Build programs directly into class/lib. Fixes random make -j failures
[mono.git] / mcs / mcs / Makefile
1 thisdir := mcs
2 SUBDIRS := 
3 include ../build/rules.make
4
5 EXTRA_DISTFILES = \
6         mcs.csproj              \
7         compiler.doc            \
8         mcs.sln         \
9         cs-parser.jay           \
10         mcs.exe.sources         \
11         NOTES                   \
12         TODO                    \
13         ikvm.cs
14
15 ifeq (basic, $(PROFILE))
16 PROGRAM = basic.exe
17 sourcefile = mcs.exe.sources
18 else
19 PROGRAM_USE_INTERMEDIATE_FILE = true
20 PROGRAM = mcs.exe
21 LOCAL_MCS_FLAGS += -lib:$(topdir)/class/lib/build
22 endif
23
24 LOCAL_MCS_FLAGS += -d:STATIC,NO_SYMBOL_WRITER
25
26 PROGRAM_INSTALL_DIR = $(mono_libdir)/mono/4.5
27
28 PROGRAM_COMPILE = $(BOOT_COMPILE)
29
30 BUILT_SOURCES = cs-parser.cs
31
32 CLEAN_FILES += y.output
33
34 %-parser.cs: %-parser.jay $(topdir)/jay/skeleton.cs
35         $(topdir)/jay/jay -c < $(topdir)/jay/skeleton.cs $< > jay-tmp.out && mv jay-tmp.out $@
36
37 KEEP_OUTPUT_FILE_COPY = yes
38
39 include ../build/executable.make
40
41 csproj-local:
42         config_file=`basename $(PROGRAM) .exe`-$(PROFILE).input; \
43         echo $(thisdir):$$config_file >> $(topdir)/../msvc/scripts/order; \
44         (echo $(is_boot); \
45         echo $(BOOTSTRAP_MCS);  \
46         echo $(USE_MCS_FLAGS) $(LIBRARY_FLAGS) $(LIB_MCS_FLAGS); \
47         echo $(PROGRAM); \
48         echo $(BUILT_SOURCES); \
49         echo $(PROGRAM); \
50         echo $(response)) > $(topdir)/../msvc/scripts/inputs/$$config_file
51
52 #
53 # Below this line we have local targets used for testing and development
54 #
55
56 # Testing targets
57
58 TIME = time
59
60 # This used to be called test, but that conflicts with the global
61 # recursive target.
62
63 btest: mcs2.exe mcs3.exe
64         ls -l mcs2.exe mcs3.exe
65
66 mcs2.exe: $(PROGRAM)
67         $(TIME) $(RUNTIME) $(RUNTIME_FLAGS) $(PROGRAM) $(USE_MCS_FLAGS) -target:exe -out:$@ $(BUILT_SOURCES) @$(response)
68
69 mcs3.exe: mcs2.exe
70         $(TIME) $(RUNTIME) $(RUNTIME_FLAGS) ./mcs2.exe $(USE_MCS_FLAGS) -target:exe -out:$@ $(BUILT_SOURCES) @$(response)
71
72 wc:
73         wc -l $(BUILT_SOURCES) `cat $(sourcefile)`
74
75 # we need this because bash tries to use its own crappy timer
76 FRIENDLY_TIME = $(shell which time) -f'%U seconds'
77
78 do-time : $(PROGRAM)
79         @ echo -n "Run 1:   "
80         @ rm -f mcs2.exe
81         @ $(MAKE) TIME="$(FRIENDLY_TIME)" mcs2.exe > /dev/null || (echo FAILED; exit 1)
82         @ echo -n "Run 2:   "
83         @ rm -f mcs3.exe
84         @ $(MAKE) TIME="$(FRIENDLY_TIME)" mcs3.exe > /dev/null || (echo FAILED; exit 1)
85         @ $(MAKE) do-corlib
86
87 do-corlib:
88         @ echo -n "corlib:  "
89         @ rm -f ../class/lib/mscorlib.dll
90         @ cd ../class/corlib ; $(MAKE) BOOTSTRAP_MCS='$(FRIENDLY_TIME) mono $$(topdir)/class/lib/$(PROFILE)/mcs.exe' > /dev/null || (echo FAILED; exit 1)
91
92 PROFILER=default
93
94 do-gettext:
95         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 /`
96
97 profile : $(PROGRAM)
98         $(RUNTIME) $(RUNTIME_FLAGS) --profile=$(PROFILER) $(PROGRAM) $(USE_MCS_FLAGS) -target:exe -out:mcs2.exe $(BUILT_SOURCES) @$(response)
99         
100 debug-parser:
101         $(topdir)/jay/jay -cvt < $(topdir)/jay/skeleton.cs cs-parser.jay > jay-tmp.out && mv jay-tmp.out cs-parser.cs
102         $(MAKE)
103
104 #
105 # quick hack target, to quickly develop the gmcs compiler
106 # Update manually.
107
108 q: cs-parser.cs qh
109         echo 'System.Console.WriteLine ("Hello");' | mono csharp.exe
110         echo -e 'using System;\nConsole.WriteLine ("hello");' | mono csharp.exe
111         echo -e '"foo" == "bar";' | mono csharp.exe
112         echo -e 'var a = 1;\na + 2;' | mono csharp.exe
113         echo -e 'int j;\nj = 1;' | mono csharp.exe
114         echo -e 'var a = new int[]{1,2,3};\nfrom x in a select x;' | mono csharp.exe
115         echo -e 'var a = from f in System.IO.Directory.GetFiles ("/tmp") where f == "passwd" select f;' | mono csharp.exe
116
117