summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2003-12-03 18:31:10 +0000
committermihaylov <mihaylov@epfl.ch>2003-12-03 18:31:10 +0000
commitd305f5fbe6866fd24f0e71fe5e6a8b9d6f9f8da2 (patch)
tree04d375e09831d4aee1a5ee0fe8c4951e1d6098eb
parent619bbf9b85d89b914b5921ff4de6ff747502f3e2 (diff)
downloadscala-d305f5fbe6866fd24f0e71fe5e6a8b9d6f9f8da2.tar.gz
scala-d305f5fbe6866fd24f0e71fe5e6a8b9d6f9f8da2.tar.bz2
scala-d305f5fbe6866fd24f0e71fe5e6a8b9d6f9f8da2.zip
- added target 'library-msil' to compile the sc...
- added target 'library-msil' to compile the scala library for the .NET
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6744aa2906..0601ad6be9 100644
--- a/Makefile
+++ b/Makefile
@@ -218,6 +218,7 @@ bootstrap : .latest-bootstrap
scripts : $(SCRIPTS_WRAPPER_LINKS)
library : .latest-$(boot)library-jc
library : .latest-$(boot)library-sc
+library-msil : .latest-$(boot)library-sc-msil
scalac : .latest-$(boot)scalac-jc
scalac : .latest-$(boot)scalac-sc
interpreter : .latest-interpreter-jc
@@ -338,6 +339,11 @@ cvs-fix-perms :
@$(make) sc target=LIBRARY LIBRARY_SC_FILES='$(subst $$,$$$$,$?)'
touch $@
+.latest-$(boot)library-sc-msil : $(LIBRARY_SC_FILES)
+ @$(make) sc target=LIBRARY SC_TARGET="msil"\
+ SC_FLAGS="-r $(PROJECT_LIBRARYDIR)" LIBRARY_SC_FILES='$(subst $$,$$$$,$?)'
+ touch $@
+
.latest-library-sdc : $(LIBRARY_SDC_FILES)
@$(make) sdc target=LIBRARY
touch $@