summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-08-18 16:50:08 +0000
committerpaltherr <paltherr@epfl.ch>2003-08-18 16:50:08 +0000
commitb7dd9ed9a234211df2eb592ce96b1f7de9d88165 (patch)
tree6e2f614ceafea205a1e97725444e042bea7df76a /Makefile
parent87210b8f1092065be1b7cfaf13a3852fe861abe4 (diff)
downloadscala-b7dd9ed9a234211df2eb592ce96b1f7de9d88165.tar.gz
scala-b7dd9ed9a234211df2eb592ce96b1f7de9d88165.tar.bz2
scala-b7dd9ed9a234211df2eb592ce96b1f7de9d88165.zip
- made some makefile scripts a bit more robust ...
- made some makefile scripts a bit more robust to filenames containing - $s reenabled generation of scala documentation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e9f658fea6..6ed87add25 100644
--- a/Makefile
+++ b/Makefile
@@ -130,7 +130,7 @@ all : library
all : interpreter
all : scaladoc
all : dtd2scala
-#all : library-doc
+all : library-doc
force : fastclean
@$(make) all
@@ -208,15 +208,15 @@ library-doc : .latest-library-sdc
touch $@
.latest-library-jc : $(LIBRARY_JC_FILES)
- @$(make) jc target=LIBRARY LIBRARY_JC_FILES='$?'
+ @$(make) jc target=LIBRARY LIBRARY_JC_FILES='$(subst $$,$$$$,$?)'
touch $@
.latest-library-sc : $(LIBRARY_SC_FILES)
- @$(make) sc target=LIBRARY LIBRARY_SC_FILES='$(subst $$,\$$$$,$?)'
+ @$(make) sc target=LIBRARY LIBRARY_SC_FILES='$(subst $$,$$$$,$?)'
touch $@
.latest-library-sdc : $(LIBRARY_SDC_FILES)
- @$(make) sdc target=LIBRARY LIBRARY_SDC_FILES='$(subst $$,\$$$$,$(LIBRARY_SDC_FILES))'
+ @$(make) sdc target=LIBRARY
touch $@
.latest-interpreter : $(INTERPRETER_JC_FILES)