From 291c0ff37ace2045a2b3b9d8eda9e05a8e157b0a Mon Sep 17 00:00:00 2001 From: Dan Crosta Date: Sat, 28 Jul 2012 13:28:37 -0400 Subject: [PATCH] make targets in docs/Makefile available at top level --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4c2b0cf..e702e78 100644 --- 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 $@ -- 1.8.0.2