2007-10-17 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / gmcs / Makefile
1 thisdir := gmcs
2 SUBDIRS := 
3 include ../build/rules.make
4
5 #uncomment to enable some debug stuff
6 #DEBUG_FLAGS=/define:MCS_DEBUG
7
8 LOCAL_MCS_FLAGS += -d:GMCS_SOURCE
9
10 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)
11
12 BUILT_SOURCES = cs-parser.cs
13
14 EXTRA_DISTFILES = cs-parser.jay
15
16 PROGRAM = $(topdir)/class/lib/$(PROFILE)/gmcs.exe
17 PROGRAM_COMPILE = $(BOOT_COMPILE)
18
19 CLEAN_FILES = y.output *.exe *.mdb
20
21 cs-parser.cs: cs-parser.jay $(topdir)/jay/skeleton.cs
22         $(topdir)/jay/jay -ctv < $(topdir)/jay/skeleton.cs $< > jay-tmp.out && mv jay-tmp.out $@
23
24 ifeq (net_2_1, $(PROFILE))
25 NO_INSTALL = yes
26 endif
27
28 include ../build/executable.make
29
30 VALID_PROFILE := $(filter net_2_0_bootstrap net_2_0 net_2_1, $(PROFILE))
31 ifdef VALID_PROFILE
32 # Utility rule to make debugging somewhat easier.
33 all-local: gmcs.exe
34 gmcs.exe: $(PROGRAM)
35         cp -p $< $@
36         test ! -f $<.mdb || cp -p $<.mdb $@.mdb
37 endif
38
39 clean-local: clean-net_2_0_bootstrap
40 clean-net_2_0_bootstrap:
41         cd .. && $(MAKE) PROFILE=net_2_0_bootstrap clean
42
43 bootstrap_libs = mscorlib.dll System.dll System.Xml.dll Mono.CompilerServices.SymbolWriter.dll
44 bootstrap_libfiles = $(bootstrap_libs:%=$(topdir)/class/lib/net_2_0_bootstrap/%)
45
46 $(bootstrap_libfiles): bootstrap-libs
47         @:
48 .PHONY: bootstrap-libs
49 bootstrap-libs:
50         cd .. && $(MAKE) PROFILE=net_2_0_bootstrap all
51
52 $(PROGRAM): $(bootstrap_libfiles)
53
54 gmcs2.exe: $(PROGRAM)
55         MONO_PATH="../class/lib/net_2_0$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" time $(RUNTIME) $(RUNTIME_FLAGS) $(PROGRAM) /target:exe /debug /out:$@ -d:GMCS_SOURCE  -d:NET_1_1 -d:NET_2_0 cs-parser.cs  @gmcs.exe.sources
56
57 gmcs3.exe: gmcs2.exe
58         MONO_PATH="../class/lib/net_2_0$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" time $(RUNTIME) $(RUNTIME_FLAGS) ./gmcs2.exe /target:exe /debug /out:$@ -d:GMCS_SOURCE  -d:NET_1_1 -d:NET_2_0 cs-parser.cs  @gmcs.exe.sources
59
60 gmcs4.exe: gmcs3.exe
61         MONO_PATH="../class/lib/net_2_0$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" time $(RUNTIME) $(RUNTIME_FLAGS) ./gmcs3.exe /target:exe /debug /out:$@ -d:GMCS_SOURCE  -d:NET_1_1 -d:NET_2_0 cs-parser.cs  @gmcs.exe.sources
62
63
64 # Testing targets
65
66 TIME = 
67
68 # This used to be called test, but that conflicts with the global
69 # recursive target.
70
71 btest: gmcs2.exe gmcs3.exe gmcs4.exe
72         ls -l gmcs3.exe gmcs4.exe
73
74 wc:
75         wc -l $(all_sources)
76
77 ctest: 
78         rm -f gmcs3.exe mcs4.exe
79         make btest USE_MCS_FLAGS= 
80
81 # we need this because bash tries to use its own crappy timer
82 FRIENDLY_TIME = $(shell which time) -f'%U seconds'
83
84 do-time : mcs.exe
85         @ echo -n "Run 1:   "
86          $(FRIENDLY_TIME) $(RUNTIME) $(RUNTIME_FLAGS) ./mcs.exe $(USE_MCS_FLAGS) /target:exe /out:mcs2.exe $(all_sources) > /dev/null || (echo FAILED; exit 1)
87         @ echo -n "Run 2:   "
88         @ $(FRIENDLY_TIME) $(RUNTIME) $(RUNTIME_FLAGS) ./mcs2.exe $(USE_MCS_FLAGS) /target:exe /out:mcs3.exe $(all_sources) > /dev/null || (echo FAILED; exit 1)
89         @ echo -n "corlib:  "
90         @ rm -f ../class/lib/mscorlib.dll
91         @ (cd ../class/corlib ; make BOOTSTRAP_MCS="$(FRIENDLY_TIME) mono ../../mcs/mcs.exe" > /dev/null ) || (echo FAILED; exit 1)
92
93 do-corlib:
94         @ echo -n "corlib:  "
95         @ rm -f ../class/lib/mscorlib.dll
96         @ (cd ../class/corlib ; make BOOTSTRAP_MCS="$(FRIENDLY_TIME) mono ../../mcs/mcs.exe" > /dev/null ) || (echo FAILED; exit 1)
97
98 PROFILER=default
99
100 profile : gmcs2.exe
101         -rm -f gmcs3.exe
102         make gmcs3.exe RUNTIME_FLAGS='--profile=$(PROFILER)'
103
104 #
105 # This is used to test the various possible expressions that can be
106 # part of a lambda expression (used to exercise the micro-parser built
107 # inside the tokenizer to return OPEN_PARENS or OPEN_PARENS_LAMBDA
108 # that trigger different parsing paths on the compiler
109 #
110 typetest:
111         mono gmcs.exe --typetest ../mcs/lambda.test
112
113 l:
114         mono --debug gmcs.exe -langversion:linq l1.cs
115
116 #
117 # qh="quick hack", a target to quickly rebuild the generics compiler once you
118 # have built it once.
119 #
120 qh:
121         make cs-parser.cs
122         MONO_PATH="../class/lib/net_2_0_bootstrap$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) ../class/lib/net_2_0_bootstrap/mcs.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