Cleanup typed constants
[mono.git] / mcs / mcs / Makefile
index d0e3099a87826f0c35f43b5dbbe4cd6c7f53b049..4599b6f8d59d1b835190671ef4dca999ce858dc8 100644 (file)
@@ -7,82 +7,61 @@ EXTRA_DISTFILES = \
        compiler.doc            \
        *mcs.sln                \
        *cs-parser.jay          \
+       *.sources               \
        NOTES                   \
-       TODO
-
-GMCS_PROFILE := $(filter net_2_0_bootstrap net_2_0 net_2_1, $(PROFILE))
-
-ifdef GMCS_PROFILE
-       BUILT_SOURCES = gcs-parser.cs
-       LOCAL_MCS_FLAGS += -d:GMCS_SOURCE
-       
-       ifeq (net_2_1, $(PROFILE))
-               INTERNAL_SMCS = $(INTERNAL_GMCS)
-               LOCAL_MCS_FLAGS += -nowarn:618 -noconfig -r:mscorlib -r:System.dll
-               PROGRAM = $(topdir)/class/lib/$(PROFILE)/smcs.exe
-       else
-               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/mcs.exe $(DEBUG_FLAGS)
-               PROGRAM = $(topdir)/class/lib/$(PROFILE)/gmcs.exe
-       endif   
-else
-       BUILT_SOURCES = cs-parser.cs
-       PROGRAM = $(topdir)/class/lib/$(PROFILE)/mcs.exe
-endif
-
-PROGRAM_COMPILE = $(BOOT_COMPILE)
-
-CLEAN_FILES += y.output
-
-%-parser.cs: %-parser.jay $(topdir)/jay/skeleton.cs
-       $(topdir)/jay/jay -ctv < $(topdir)/jay/skeleton.cs $< > jay-tmp.out && mv jay-tmp.out $@
+       TODO                    \
+       *mcs.exe.config
 
+COMPILER_NAME = gmcs
 
-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
-
-progdir = $(dir $(PROGRAM))
+ifeq (net_2_0, $(PROFILE))
+INTERNAL_GMCS = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(BOOTSTRAP_PROFILE)/gmcs.exe
+endif
 
-$(progdir)/.stamp:
-       $(MKINSTALLDIRS) $(@D)
-       touch $@
+ifeq (moonlight_bootstrap, $(PROFILE))
+INTERNAL_GMCS = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(BOOTSTRAP_PROFILE)/gmcs.exe
+endif
 
-$(PROGRAM): $(topdir)/class/lib/default/mcs.exe $(progdir)/.stamp
-       cp $< $@
+ifeq (2.1, $(FRAMEWORK_VERSION))
+LOCAL_MCS_FLAGS += -d:SMCS_SOURCE
+COMPILER_NAME = smcs
+endif
 
-$(PROGRAM).config: $(progdir)/.stamp
-       cp $< $@
+ifeq (4.0, $(FRAMEWORK_VERSION))
+COMPILER_NAME = dmcs
+endif
 
-else
+PROGRAM = $(topdir)/class/lib/$(PROFILE)/$(COMPILER_NAME).exe
 
-ifeq (net_2_0, $(PROFILE))
+BUILT_SOURCES = cs-parser.cs
 
-clean-local: clean-net_2_0_bootstrap
-clean-net_2_0_bootstrap:
-       cd .. && $(MAKE) PROFILE=net_2_0_bootstrap clean
+PROGRAM_COMPILE = $(BOOT_COMPILE)
 
-bootstrap_libs = mscorlib.dll System.dll System.Xml.dll Mono.CompilerServices.SymbolWriter.dll
-bootstrap_libfiles = $(bootstrap_libs:%=$(topdir)/class/lib/net_2_0_bootstrap/%)
+CLEAN_FILES += y.output
 
-$(bootstrap_libfiles): bootstrap-libs
-       @:
-.PHONY: bootstrap-libs
-bootstrap-libs:
-       cd .. && $(MAKE) PROFILE=net_2_0_bootstrap all
+# Use -cvt for parser debug version
+%-parser.cs: %-parser.jay $(topdir)/jay/skeleton.cs
+       $(topdir)/jay/jay -cv < $(topdir)/jay/skeleton.cs $< > jay-tmp.out && mv jay-tmp.out $@
 
-$(PROGRAM): $(bootstrap_libfiles)
-endif
 
 KEEP_OUTPUT_FILE_COPY = yes
 
 include ../build/executable.make
-endif
+
+csproj-local:
+       config_file=`basename $(PROGRAM) .exe`-$(PROFILE).input; \
+       echo $(thisdir):$$config_file >> $(topdir)/../mono/msvc/scripts/order; \
+       (echo $(is_boot); \
+       echo $(BOOTSTRAP_MCS);  \
+       echo $(USE_MCS_FLAGS) $(LIBRARY_FLAGS) $(LIB_MCS_FLAGS); \
+       echo $(PROGRAM); \
+       echo $(BUILT_SOURCES); \
+       echo $(PROGRAM); \
+       echo $(response)) > $(topdir)/../mono/msvc/scripts/inputs/$$config_file
+
+#
+# Below this line we have local targets used for testing and development
+#
 
 # Testing targets
 
@@ -126,5 +105,23 @@ do-corlib:
 
 PROFILER=default
 
+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.
+
+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
+
+