diff options
| -rw-r--r-- | http/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/http/Makefile b/http/Makefile index 4c50da8..c3034a1 100644 --- a/http/Makefile +++ b/http/Makefile @@ -99,14 +99,17 @@ endef # RULES # ######### -all: $(blogs) public out vendor +all: out $(blogs) public build vendor $(MAKE) out # if blog posts have been pruned, outfiles must be re-calculated +out: + mkdir out + share/man/man1/pp.1: cp pp/pp.1 share/man/man1/pp.1 -.PHONY: out -out: $(out_deps) +.PHONY: build +build: $(out_deps) bin/pp: $(MAKE) --directory=pp && chmod +x pp/pp && cp pp/pp bin/pp |
