2008-11-24 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / mcs / Makefile
index e885bd69a241f0833046fb4c10008760d3829018..da6ea0cd9fe3fe73b0ee8bd6413b371b50e2091e 100644 (file)
@@ -2,27 +2,91 @@ thisdir := mcs
 SUBDIRS := 
 include ../build/rules.make
 
-BUILT_SOURCES = cs-parser.cs
-
 EXTRA_DISTFILES = \
-       compiler.csproj         \
+       *mcs.csproj             \
        compiler.doc            \
-       compiler.sln            \
-       cs-parser.jay           \
-       mcs.exe.config          \
+       *mcs.sln                \
+       *cs-parser.jay          \
+       *.sources               \
+       generic.cs              \
        NOTES                   \
-       TODO
+       TODO                    \
+       gmcs.exe.config
+
+ifeq (1.0, $(FRAMEWORK_VERSION))
+COMPILER_NAME = mcs
+endif
+
+ifeq (2.0, $(FRAMEWORK_VERSION))
+LOCAL_MCS_FLAGS += -d:GMCS_SOURCE
+COMPILER_NAME = gmcs
+endif
+
+ifeq (2.1, $(FRAMEWORK_VERSION))
+LOCAL_MCS_FLAGS += -d:GMCS_SOURCE -d:SMCS_SOURCE
+COMPILER_NAME = smcs
+endif
+
+PROGRAM = $(topdir)/class/lib/$(PROFILE)/$(COMPILER_NAME).exe
+
+BUILT_SOURCES = cs-parser.cs
 
-PROGRAM = mcs.exe
 PROGRAM_COMPILE = $(BOOT_COMPILE)
-PROGRAM_INSTALL_DIR = $(prefix)/lib/mono/1.0
 
-CLEAN_FILES = y.output
+CLEAN_FILES += y.output
+
+%-parser.cs: %-parser.jay $(topdir)/jay/skeleton.cs
+       $(topdir)/jay/jay -cv < $(topdir)/jay/skeleton.cs $< > jay-tmp.out && mv jay-tmp.out $@
+
+
+ifeq (net_2_0_bootstrap, $(PROFILE))
+
+all-local $(STD_TARGETS:=-local):
+       @:
+
+all-local: $(PROGRAM) $(PROGRAM).config
+clean-local: clean-program
+clean-program:
+       rm -f $(PROGRAM) $(PROGRAM).config
+
+$(PROGRAM) $(PROGRAM).config: $(dir $(PROGRAM))/.stamp
+
+$(PROGRAM): $(topdir)/class/lib/net_1_1/mcs.exe
+       cp $< $@
 
-cs-parser.cs: cs-parser.jay $(topdir)/jay/skeleton.cs
-       $(topdir)/jay/jay -ctv < $(topdir)/jay/skeleton.cs $< > jay-tmp.out && mv jay-tmp.out $@
+$(PROGRAM).config: gmcs.exe.config
+       cp $< $@
+
+else
+
+ifeq (net_2_0, $(PROFILE))
+
+BOOTSTRAP_MCS = MONO_PATH="$(topdir)/class/lib/net_2_0_bootstrap$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/net_2_0_bootstrap/gmcs.exe $(DEBUG_FLAGS)
+
+clean-local: clean-net_2_0_bootstrap
+clean-net_2_0_bootstrap:
+       cd .. && $(MAKE) NO_DIR_CHECK=yes PROFILE=net_2_0_bootstrap clean
+
+bootstrap_libs = mscorlib.dll System.dll System.Xml.dll Mono.CompilerServices.SymbolWriter.dll
+bootstrap_libfiles = $(bootstrap_libs:%=$(topdir)/class/lib/net_2_0_bootstrap/%)
+
+$(bootstrap_libfiles): bootstrap-libs
+       @:
+.PHONY: bootstrap-libs
+bootstrap-libs:
+       cd .. && $(MAKE) NO_DIR_CHECK=yes PROFILE=net_2_0_bootstrap all
+
+$(PROGRAM): $(bootstrap_libfiles)
+endif
+
+KEEP_OUTPUT_FILE_COPY = yes
 
 include ../build/executable.make
+endif
+
+#
+# Below this line we have local targets used for testing and development
+#
 
 # Testing targets
 
@@ -34,23 +98,23 @@ TIME = time
 btest: mcs2.exe mcs3.exe
        ls -l mcs2.exe mcs3.exe
 
-mcs2.exe: mcs.exe
-       $(TIME) $(RUNTIME) ./mcs.exe $(USE_MCS_FLAGS) /target:exe /out:$@ $(BUILT_SOURCES) @$(response)
+mcs2.exe: $(PROGRAM)
+       $(TIME) $(RUNTIME) $(RUNTIME_FLAGS) $(PROGRAM) $(USE_MCS_FLAGS) -target:exe -out:$@ $(BUILT_SOURCES) @$(response)
 
 mcs3.exe: mcs2.exe
-       $(TIME) $(RUNTIME) ./mcs2.exe $(USE_MCS_FLAGS) /target:exe /out:$@ $(BUILT_SOURCES) @$(response)
+       $(TIME) $(RUNTIME) $(RUNTIME_FLAGS) ./mcs2.exe $(USE_MCS_FLAGS) -target:exe -out:$@ $(BUILT_SOURCES) @$(response)
 
 wc:
        wc -l $(BUILT_SOURCES) `cat $(sourcefile)`
 
 ctest: 
        rm -f mcs2.exe mcs3.exe
-       $(MAKE) USE_MCS_FLAGS= btest
+       $(MAKE) USE_MCS_FLAGS="-d:NET_1_1 -d:ONLY_1_1" btest
 
 # we need this because bash tries to use its own crappy timer
 FRIENDLY_TIME = $(shell which time) -f'%U seconds'
 
-do-time : mcs.exe
+do-time : $(PROGRAM)
        @ echo -n "Run 1:   "
        @ rm -f mcs2.exe
        @ $(MAKE) TIME="$(FRIENDLY_TIME)" mcs2.exe > /dev/null || (echo FAILED; exit 1)
@@ -62,9 +126,31 @@ do-time : mcs.exe
 do-corlib:
        @ echo -n "corlib:  "
        @ rm -f ../class/lib/mscorlib.dll
-       @ cd ../class/corlib ; $(MAKE) BOOTSTRAP_MCS="$(FRIENDLY_TIME) mono ../../mcs/mcs.exe" > /dev/null || (echo FAILED; exit 1)
+       @ cd ../class/corlib ; $(MAKE) BOOTSTRAP_MCS='$(FRIENDLY_TIME) mono $$(topdir)/class/lib/$(PROFILE)/mcs.exe' > /dev/null || (echo FAILED; exit 1)
 
 PROFILER=default
 
-profile : mcs.exe
-       $(RUNTIME) --profile=$(PROFILER) ./mcs.exe $(USE_MCS_FLAGS) /target:exe /out:mcs2.exe $(BUILT_SOURCES) @$(response)
+do-gettext:
+       xgettext --keyword='Report.Error:3' --keyword='Report.Error:2' --keyword='Report.Warning:3' --keyword='Report.Warning:2' -o mcs.po --language='C#' `cat gmcs.exe.sources | grep -v /`
+
+profile : $(PROGRAM)
+       $(RUNTIME) $(RUNTIME_FLAGS) --profile=$(PROFILER) $(PROGRAM) $(USE_MCS_FLAGS) -target:exe -out:mcs2.exe $(BUILT_SOURCES) @$(response)
+
+#
+# quick hack target, to quickly develop the gmcs compiler
+# Update manually.
+qh:
+       MONO_PATH="../class/lib/net_2_0$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) ../class/lib/net_2_0/gmcs.exe  /codepage:65001 -d:GMCS_SOURCE  -d:NET_1_1 -d:NET_2_0 -debug -target:exe -out:gmcs.exe cs-parser.cs  @gmcs.exe.sources
+       @ cp $(COMPILER_NAME).exe* $(topdir)/class/lib/$(PROFILE)/
+
+q: cs-parser.cs qh
+       echo 'System.Console.WriteLine ("Hello");' | mono csharp.exe
+       echo -e 'using System;\nConsole.WriteLine ("hello");' | mono csharp.exe
+       echo -e '"foo" == "bar";' | mono csharp.exe
+       echo -e 'var a = 1;\na + 2;' | mono csharp.exe
+       echo -e 'int j;\nj = 1;' | mono csharp.exe
+       echo -e 'var a = new int[]{1,2,3};\nfrom x in a select x;' | mono csharp.exe
+       echo -e 'var a = from f in System.IO.Directory.GetFiles ("/tmp") where f == "passwd" select f;' | mono csharp.exe
+
+
+