summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2008-12-22 22:14:17 +0100
committerAndreas Baumann <abaumann@yahoo.com>2008-12-22 22:14:17 +0100
commit69da87a8f8a30ce2d121f82c708a4c64dd29e2fd (patch)
tree04a2037f55c23dbf8ee2ae6f011c8b2ddbc36246 /makefiles
parentd5b3cedebd27264feb478463913088af2793d77f (diff)
downloadwolfbones-69da87a8f8a30ce2d121f82c708a4c64dd29e2fd.tar.gz
wolfbones-69da87a8f8a30ce2d121f82c708a4c64dd29e2fd.tar.bz2
added a help page, added copyright, authorship, installation instructions
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/help.mk11
-rw-r--r--makefiles/top.mk6
2 files changed, 17 insertions, 0 deletions
diff --git a/makefiles/help.mk b/makefiles/help.mk
new file mode 100644
index 0000000..38f96d9
--- /dev/null
+++ b/makefiles/help.mk
@@ -0,0 +1,11 @@
+
+Available targets:
+
+make [all] create all artifacts
+make test create test binaries and execute tests
+make doc build the documentation
+make clean clean up build artifacts
+make distclean clean up all generated artifacts
+make install install (set 'DESTDIR' and 'prefix' at will)
+make dist create tarball containing all sources
+make help show this very help page
diff --git a/makefiles/top.mk b/makefiles/top.mk
index 36df7d3..f41fe9b 100644
--- a/makefiles/top.mk
+++ b/makefiles/top.mk
@@ -10,6 +10,7 @@
# - target 'distclean'
# - target 'test'
# - target 'doc'
+# - target 'help'
.PHONY: all
all:
@@ -33,3 +34,8 @@ test: all
.PHONY: doc
doc:
cd docs; $(MAKE) -f GNUmakefile doc
+
+.PHONY: help
+help:
+ @cat makefiles/help.mk
+