2007-08-18 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / mcs / Makefile
1 thisdir := mcs
2 SUBDIRS := 
3 include ../build/rules.make
4
5 BUILT_SOURCES = cs-parser.cs
6
7 EXTRA_DISTFILES = \
8         compiler.csproj         \
9         compiler.doc            \
10         compiler.sln            \
11         cs-parser.jay           \
12         NOTES                   \
13         TODO
14
15 PROGRAM = $(topdir)/class/lib/$(PROFILE)/mcs.exe
16 PROGRAM_COMPILE = $(BOOT_COMPILE)
17
18 CLEAN_FILES = y.output *.exe *.mdb
19
20 cs-parser.cs: cs-parser.jay $(topdir)/jay/skeleton.cs
21         $(topdir)/jay/jay -ctv < $(topdir)/jay/skeleton.cs $< > jay-tmp.out && mv jay-tmp.out $@
22
23 ifeq (net_2_0_bootstrap, $(PROFILE))
24
25 all-local $(STD_TARGETS:=-local):
26         @:
27
28 all-local: $(PROGRAM) $(PROGRAM).config
29 clean-local: clean-program
30 clean-program:
31         rm -f $(PROGRAM) $(PROGRAM).config
32
33 progdir = $(dir $(PROGRAM))
34
35 $(progdir)/.stamp:
36         $(MKINSTALLDIRS) $(@D)
37         touch $@
38
39 $(PROGRAM): $(topdir)/class/lib/default/mcs.exe $(progdir)/.stamp
40         cp $< $@
41
42 $(PROGRAM).config: $(topdir)/gmcs/gmcs.exe.config $(progdir)/.stamp
43         cp $< $@
44
45 else
46 include ../build/executable.make
47 endif
48
49 ifeq (default, $(PROFILE))
50 # Utility rule to make debugging somewhat easier.
51 all-local: mcs.exe
52 mcs.exe: $(PROGRAM)
53         cp -p $< $@
54         test ! -f $<.mdb || cp -p $<.mdb $@.mdb
55 endif
56
57 # Testing targets
58
59 TIME = time
60
61 # This used to be called test, but that conflicts with the global
62 # recursive target.
63
64 btest: mcs2.exe mcs3.exe
65         ls -l mcs2.exe mcs3.exe
66
67 mcs2.exe: $(PROGRAM)
68         $(TIME) $(RUNTIME) $(RUNTIME_FLAGS) $(PROGRAM) $(USE_MCS_FLAGS) -target:exe -out:$@ $(BUILT_SOURCES) @$(response)
69
70 mcs3.exe: mcs2.exe
71         $(TIME) $(RUNTIME) $(RUNTIME_FLAGS) ./mcs2.exe $(USE_MCS_FLAGS) -target:exe -out:$@ $(BUILT_SOURCES) @$(response)
72
73 wc:
74         wc -l $(BUILT_SOURCES) `cat $(sourcefile)`
75
76 ctest: 
77         rm -f mcs2.exe mcs3.exe
78         $(MAKE) USE_MCS_FLAGS="-d:NET_1_1 -d:ONLY_1_1" btest
79
80 # we need this because bash tries to use its own crappy timer
81 FRIENDLY_TIME = $(shell which time) -f'%U seconds'
82
83 do-time : $(PROGRAM)
84         @ echo -n "Run 1:   "
85         @ rm -f mcs2.exe
86         @ $(MAKE) TIME="$(FRIENDLY_TIME)" mcs2.exe > /dev/null || (echo FAILED; exit 1)
87         @ echo -n "Run 2:   "
88         @ rm -f mcs3.exe
89         @ $(MAKE) TIME="$(FRIENDLY_TIME)" mcs3.exe > /dev/null || (echo FAILED; exit 1)
90         @ $(MAKE) do-corlib
91
92 do-corlib:
93         @ echo -n "corlib:  "
94         @ rm -f ../class/lib/mscorlib.dll
95         @ cd ../class/corlib ; $(MAKE) BOOTSTRAP_MCS='$(FRIENDLY_TIME) mono $$(topdir)/class/lib/$(PROFILE)/mcs.exe' > /dev/null || (echo FAILED; exit 1)
96
97 PROFILER=default
98
99 profile : $(PROGRAM)
100         $(RUNTIME) $(RUNTIME_FLAGS) --profile=$(PROFILER) $(PROGRAM) $(USE_MCS_FLAGS) -target:exe -out:mcs2.exe $(BUILT_SOURCES) @$(response)