diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cpp/Makefile b/cpp/Makefile index a74e90313ec..0851fd7fc1e 100644 --- a/cpp/Makefile +++ b/cpp/Makefile @@ -16,7 +16,7 @@ top_srcdir = . include $(top_srcdir)/config/Make.rules -SUBDIRS = src test demo doc +SUBDIRS = src test demo $(EVERYTHING):: @for subdir in $(SUBDIRS); \ @@ -25,5 +25,11 @@ $(EVERYTHING):: ( cd $$subdir && $(MAKE) $@ ) || exit 1; \ done +doc:: + @( cd doc && $(MAKE) ) || exit 1 + +clean:: + @( cd doc && $(MAKE) clean ) || exit 1 + test:: @python $(top_srcdir)/allTests.py |