diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-11-09 00:14:00 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-11-09 00:14:00 +0000 |
commit | 4696beea09695f032dcafb839d7089dbb96b2331 (patch) | |
tree | e1b0dce7d9a8870fb25a83b7589d2137cb75de8a /cpp | |
parent | docu fixes (diff) | |
download | ice-4696beea09695f032dcafb839d7089dbb96b2331.tar.bz2 ice-4696beea09695f032dcafb839d7089dbb96b2331.tar.xz ice-4696beea09695f032dcafb839d7089dbb96b2331.zip |
the doc directory is optional
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 |