summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-04-22 08:06:25 +0000
committerpaltherr <paltherr@epfl.ch>2003-04-22 08:06:25 +0000
commit791909eab24917d064ee8c41a3356b25ef9bb0ac (patch)
tree056d9e703cd4a08ff0291e35c3f015d0a1eb6a3a /Makefile
parentf7308846bb35fd6afc0191a5eacb7f2c4b8c8164 (diff)
downloadscala-791909eab24917d064ee8c41a3356b25ef9bb0ac.tar.gz
scala-791909eab24917d064ee8c41a3356b25ef9bb0ac.tar.bz2
scala-791909eab24917d064ee8c41a3356b25ef9bb0ac.zip
- Fixed some small bugs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 88af8292e6..73b231e97a 100644
--- a/Makefile
+++ b/Makefile
@@ -235,7 +235,7 @@ library : .latest-library
# Targets
.latest-meta : $(META_JC_FILES)
- @$(MAKE) jc target=META META_JC_FILES='$?'
+ @$(make) jc target=META META_JC_FILES='$?'
$(RM) .latest-runtime
$(RM) .latest-compiler
touch $@
@@ -247,11 +247,11 @@ library : .latest-library
touch $@
.latest-runtime : $(RUNTIME_JC_FILES)
- @$(MAKE) jc target=RUNTIME RUNTIME_JC_FILES='$(filter %.java,$?)'
+ @$(make) jc target=RUNTIME RUNTIME_JC_FILES='$?'
touch $@
.latest-compiler : $(COMPILER_JC_FILES)
- @$(make) jc target=COMPILER COMPILER_JC_FILES='$(filter %.java,$?)'
+ @$(make) jc target=COMPILER COMPILER_JC_FILES='$?'
touch $@
.latest-interpreter : $(INTERPRETER_JC_FILES)