diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-14 23:55:15 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-14 23:55:15 -0500 |
commit | 648cb00973eeb224bec85cf5b69cffca150cdf65 (patch) | |
tree | a65ef843dac7b53806d04438daac1db573ceb0ee | |
parent | e9619e3afa0d961eac0b0dbb3f4b7be11bbf4cfc (diff) |
Add a top-level Makefile for documentation purposes.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1cc39a1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/gitfiles.mk diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cd5a79c --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +dist.pkgname = autothing +dist.version = 1.0 +gnuconf.pkgname = autothing + +topoutdir ?= . +topsrcdir ?= . +include $(topsrcdir)/build-aux/Makefile.head.mk +include $(topsrcdir)/build-aux/Makefile.tail.mk |