make targets in docs/Makefile available at top level
authorDan Crosta <dcrosta@late.am>
Sat, 28 Jul 2012 17:28:37 +0000 (13:28 -0400)
committerDan Crosta <dcrosta@late.am>
Sat, 28 Jul 2012 17:28:37 +0000 (13:28 -0400)
Makefile

index 4c2b0cf..e702e78 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,7 @@
-build:
-       cd docs && make html
\ No newline at end of file
+.PHONY: build
+build: html
+
+# this pattern rule lets you run "make build" (or any other target
+# in docs/Makefile) in this directory as though you were in docs/
+%:
+       cd docs && make $@