summaryrefslogtreecommitdiffstats
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Use git version to get version nameBruno Wolff III2013-10-181-6/+2
| | | | | | | | | | Using git version is simpler as it handles oddball cases internally. Since we have been using mostly lightweight tags I have set it to search those in addition to annotated tags for the best match. The output for commits that don't have a tag seems a bit nicer as well. Conflicts: Makefile
* The publish target should build a tar ball if neededBruno Wolff III2013-07-021-1/+1
|
* Handle trying to remake the tar ballBruno Wolff III2013-06-291-1/+3
| | | | | Now running make when the tar ball already exists will result in it not being recreated.
* Fix to work with multiple tagsBruno Wolff III2013-06-291-1/+1
| | | | | | | If there are multiple tags pointing to HEAD we need to pick only one. We'll take one that seems to be a version number. This allows the version number tag to coexist with another tag, that perhaps indicates which images it was used to build.
* Don't install stuff that ends in the doc directory0.20.14Bruno Wolff III2013-06-291-2/+0
|
* Make directories if needed and use specific permissions0.20.13Bruno Wolff III2013-06-291-5/+9
|
* The doc directory is versioned0.20.12Bruno Wolff III2013-06-291-1/+1
|
* Missing wildcard instances causes a problem0.20.11Bruno Wolff III2013-06-291-3/+3
|
* Fix install target0.20.10Bruno Wolff III2013-06-291-1/+3
| | | | | Installing a mix of directories and files on the same install command doesn't work.
* Use DESTDIR instead of prefix0.20.9Bruno Wolff III2013-06-291-5/+5
|
* Add an install target to the make file0.20.8Bruno Wolff III2013-06-291-3/+15
| | | | | The fedora package uses make install, and it is easier to support that here rather than in the spec file.
* Fix typo in tar ball name0.20.7Bruno Wolff III2013-06-291-1/+1
|
* Add a make publish function0.20.6Bruno Wolff III2013-06-291-0/+3
|
* Use a git hash for the version if HEAD isn't tagged0.20.5Bruno Wolff III2013-06-291-1/+8
|
* Add a dist-clean function for a fuller clean upBruno Wolff III2013-06-291-0/+3
|
* The prefix should end with a /Bruno Wolff III2013-06-291-1/+1
|
* Have make use tags to name tar ballBruno Wolff III2013-06-291-2/+4
|
* Fix up the MakefileBruno Wolff III2013-06-291-2/+5
| | | | | Some more changes are needed, but at least get the simplified version working.
* Switch from using auto tools to just building a new tarballBruno Wolff III2013-06-291-0/+2
The previous system required making commits in order to do a new build. This caused problems because we were using the git repo directly for fedora builds and we couldn't use that exact version when building matching packages because of needing to make new commits in order to do the build. Having the spec file in here also was unnecessary. It is easy to just maintain the spec file in the Fedora package. I still want to do a bit more future work with this to pick up the version from a git tag.