oops
[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 include ../build/executable.make
25
26 VALID_PROFILE := $(filter net_2_0_bootstrap net_2_0 net_2_1, $(PROFILE))
27 ifdef VALID_PROFILE
28 # Utility rule to make debugging somewhat easier.
29 all-local: gmcs.exe
30 gmcs.exe: $(PROGRAM)
31         cp -p $< $@
32         test ! -f $<.mdb || cp -p $<.mdb $@.mdb
33 endif
34
35 ifeq (net_2_1, $(PROFILE))
36 install-local:
37         -mkdir $(mono_libdir)/mono/2.1/
38         rm -f $(mono_libdir)/mono/2.1/gmcs.exe
39         ln -s $(mono_libdir)/mono/2.0/gmcs.exe $(mono_libdir)/mono/2.1
40 endif
41
42 clean-local: clean-net_2_0_bootstrap
43 clean-net_2_0_bootstrap:
44         cd .. && $(MAKE) PROFILE=net_2_0_bootstrap clean
45
46 bootstrap_libs = mscorlib.dll System.dll System.Xml.dll Mono.CompilerServices.SymbolWriter.dll
47 bootstrap_libfiles = $(bootstrap_libs:%=$(topdir)/class/lib/net_2_0_bootstrap/%)
48
49 $(bootstrap_libfiles): bootstrap-libs
50         @:
51 .PHONY: bootstrap-libs
52 bootstrap-libs:
53         cd .. && $(MAKE) PROFILE=net_2_0_bootstrap all
54
55 $(PROGRAM): $(bootstrap_libfiles)
56
57 gmcs2.exe: $(PROGRAM)
58         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
59
60 gmcs3.exe: gmcs2.exe
61         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
62
63 gmcs4.exe: gmcs3.exe
64         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
65
66
67 # Testing targets
68
69 TIME = 
70
71 # This used to be called test, but that conflicts with the global
72 # recursive target.
73
74 btest: gmcs2.exe gmcs3.exe gmcs4.exe
75         ls -l gmcs3.exe gmcs4.exe
76
77 wc:
78         wc -l $(all_sources)
79
80 ctest: 
81         rm -f gmcs3.exe mcs4.exe
82         make btest USE_MCS_FLAGS= 
83
84 # we need this because bash tries to use its own crappy timer
85 FRIENDLY_TIME = $(shell which time) -f'%U seconds'
86
87 do-time : mcs.exe
88         @ echo -n "Run 1:   "
89          $(FRIENDLY_TIME) $(RUNTIME) $(RUNTIME_FLAGS) ./mcs.exe $(USE_MCS_FLAGS) /target:exe /out:mcs2.exe $(all_sources) > /dev/null || (echo FAILED; exit 1)
90         @ echo -n "Run 2:   "
91         @ $(FRIENDLY_TIME) $(RUNTIME) $(RUNTIME_FLAGS) ./mcs2.exe $(USE_MCS_FLAGS) /target:exe /out:mcs3.exe $(all_sources) > /dev/null || (echo FAILED; exit 1)
92         @ echo -n "corlib:  "
93         @ rm -f ../class/lib/mscorlib.dll
94         @ (cd ../class/corlib ; make BOOTSTRAP_MCS="$(FRIENDLY_TIME) mono ../../mcs/mcs.exe" > /dev/null ) || (echo FAILED; exit 1)
95
96 do-corlib:
97         @ echo -n "corlib:  "
98         @ rm -f ../class/lib/mscorlib.dll
99         @ (cd ../class/corlib ; make BOOTSTRAP_MCS="$(FRIENDLY_TIME) mono ../../mcs/mcs.exe" > /dev/null ) || (echo FAILED; exit 1)
100
101 PROFILER=default
102
103 profile : gmcs2.exe
104         -rm -f gmcs3.exe
105         make gmcs3.exe RUNTIME_FLAGS='--profile=$(PROFILER)'
106
107 #
108 # This is used to test the various possible expressions that can be
109 # part of a lambda expression (used to exercise the micro-parser built
110 # inside the tokenizer to return OPEN_PARENS or OPEN_PARENS_LAMBDA
111 # that trigger different parsing paths on the compiler
112 #
113 typetest:
114         mono gmcs.exe --typetest ../mcs/lambda.test
115
116 l:
117         mono --debug gmcs.exe -langversion:linq l1.cs
118
119 #
120 # qh="quick hack", a target to quickly rebuild the generics compiler once you
121 # have built it once.
122 #
123 qh:
124         make cs-parser.cs
125         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