diff options
author | Björn Gustavsson <[email protected]> | 2011-10-06 13:17:07 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-10-06 13:17:07 +0200 |
commit | 238753cfd7887167f6ec19d7cde730b04214334d (patch) | |
tree | f8c0d8fc6503dfe052d08cd353be2915b9f2fc00 /lib/ic/doc/src/Makefile | |
parent | d01551f400e2a7944dcc10319be0c9f248ca3179 (diff) | |
download | otp-238753cfd7887167f6ec19d7cde730b04214334d.tar.gz otp-238753cfd7887167f6ec19d7cde730b04214334d.tar.bz2 otp-238753cfd7887167f6ec19d7cde730b04214334d.zip |
Revert "ic documentation: Support parallel make"
This reverts commit d9ec7c91ca6ae019ad80b03fb184924bad8d6bc8.
The commit did not fix the real problem.
Diffstat (limited to 'lib/ic/doc/src/Makefile')
-rw-r--r-- | lib/ic/doc/src/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/ic/doc/src/Makefile b/lib/ic/doc/src/Makefile index acb6848fee..8eda436a24 100644 --- a/lib/ic/doc/src/Makefile +++ b/lib/ic/doc/src/Makefile @@ -206,8 +206,6 @@ JAVADOCFLAGS = \ # ---------------------------------------------------- # Targets # ---------------------------------------------------- -_create_dirs := $(shell mkdir -p $(JAVA_OUT_DIR)) - $(HTMLDIR)/%.gif: %.gif $(INSTALL_DATA) $< $@ @@ -258,7 +256,10 @@ clean clean_docs clean_tex: endif -$(JAVADOC_GENERATED_FILES): +$(JAVA_OUT_DIR): + mkdir $(JAVA_OUT_DIR) + +$(JAVADOC_GENERATED_FILES): $(JAVA_OUT_DIR) @(cd ../../java_src; $(JAVADOC) $(JAVADOCFLAGS) com.ericsson.otp.ic) man: $(MAN3_FILES) |