make targets in docs/Makefile available at top level
[python-guide.git] / 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 $@