added manual target in root Makefile

`manual` target is added to `all` target
This commit is contained in:
Yann Collet
2017-02-22 01:10:43 -08:00
parent 508404514c
commit 7757577341
2 changed files with 148 additions and 55 deletions
+9 -2
View File
@@ -26,8 +26,7 @@ endif
default: lib zstd-release
.PHONY: all
all: allmost
CPPFLAGS=-I../lib LDFLAGS=-L../lib $(MAKE) -C examples/ $@
all: | allmost examples manual
.PHONY: allmost
allmost:
@@ -68,6 +67,14 @@ zlibwrapper:
test:
$(MAKE) -C $(TESTDIR) $@
.PHONY: examples
examples:
CPPFLAGS=-I../lib LDFLAGS=-L../lib $(MAKE) -C examples/ all
.PHONY: manual
manual:
$(MAKE) -C contrib/gen_html $@
.PHONY: clean
clean:
@$(MAKE) -C $(ZSTDDIR) $@ > $(VOID)