do not check order sequence if option /order was not used
[mono.git] / mcs / mcs / Makefile
1 # To produce a debugging parser, use the version that says "-cvt"
2 JAY_FLAGS=-c
3 # JAY_FLAGS=-cvt
4
5 thisdir := mcs
6 SUBDIRS := 
7 include ../build/rules.make
8
9 EXTRA_DISTFILES = \
10         mcs.csproj              \
11         mcs.sln         \
12         cs-parser.jay           \
13         mcs.exe.sources
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 the_libdir = $(topdir)/class/lib/build/
22 LOCAL_MCS_FLAGS += -lib:$(topdir)/class/lib/build -debug
23 endif
24
25 LOCAL_MCS_FLAGS += -d:STATIC,NO_SYMBOL_WRITER
26
27 PROGRAM_INSTALL_DIR = $(mono_libdir)/mono/4.5
28
29 PROGRAM_COMPILE = $(BOOT_COMPILE)
30
31 BUILT_SOURCES = cs-parser.cs
32
33 CLEAN_FILES += y.output
34
35 %-parser.cs: %-parser.jay $(topdir)/jay/skeleton.cs
36         $(topdir)/jay/jay $(JAY_FLAGS) < $(topdir)/jay/skeleton.cs $< > jay-tmp.out && mv jay-tmp.out $@
37
38 KEEP_OUTPUT_FILE_COPY = yes
39
40 include ../build/executable.make
41
42 csproj-local:
43         config_file=`basename $(PROGRAM) .exe`-$(PROFILE).input; \
44         echo $(thisdir):$$config_file >> $(topdir)/../msvc/scripts/order; \
45         (echo $(is_boot); \
46         echo $(BOOTSTRAP_MCS);  \
47         echo $(USE_MCS_FLAGS) $(LIBRARY_FLAGS) $(LIB_MCS_FLAGS); \
48         echo $(PROGRAM); \
49         echo $(BUILT_SOURCES); \
50         echo $(PROGRAM); \
51         echo $(response)) > $(topdir)/../msvc/scripts/inputs/$$config_file
52
53 #
54 # Below this line we have local targets used for testing and development
55 #
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 # we need this because bash tries to use its own crappy timer
77 FRIENDLY_TIME = $(shell which time) -f'%U seconds'
78
79 do-time : $(PROGRAM)
80         @ echo -n "Run 1:   "
81         @ rm -f mcs2.exe
82         @ $(MAKE) TIME="$(FRIENDLY_TIME)" mcs2.exe > /dev/null || (echo FAILED; exit 1)
83         @ echo -n "Run 2:   "
84         @ rm -f mcs3.exe
85         @ $(MAKE) TIME="$(FRIENDLY_TIME)" mcs3.exe > /dev/null || (echo FAILED; exit 1)
86         @ $(MAKE) do-corlib
87
88 do-corlib:
89         @ echo -n "corlib:  "
90         @ rm -f ../class/lib/mscorlib.dll
91         @ cd ../class/corlib ; $(MAKE) BOOTSTRAP_MCS='$(FRIENDLY_TIME) mono $$(topdir)/class/lib/$(PROFILE)/mcs.exe' > /dev/null || (echo FAILED; exit 1)
92
93 PROFILER=default
94
95 do-gettext:
96         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 /`
97
98 profile : $(PROGRAM)
99         $(RUNTIME) $(RUNTIME_FLAGS) --profile=$(PROFILER) $(PROGRAM) $(USE_MCS_FLAGS) -target:exe -out:mcs2.exe $(BUILT_SOURCES) @$(response)
100
101 debug-parser:
102         rm cs-parser.cs
103         $(MAKE) JAY_FLAGS=-cvt
104
105 #
106 # quick hack target, to quickly develop the gmcs compiler
107 # Update manually.
108
109 q: cs-parser.cs qh
110         echo 'System.Console.WriteLine ("Hello");' | mono csharp.exe
111         echo -e 'using System;\nConsole.WriteLine ("hello");' | mono csharp.exe
112         echo -e '"foo" == "bar";' | mono csharp.exe
113         echo -e 'var a = 1;\na + 2;' | mono csharp.exe
114         echo -e 'int j;\nj = 1;' | mono csharp.exe
115         echo -e 'var a = new int[]{1,2,3};\nfrom x in a select x;' | mono csharp.exe
116         echo -e 'var a = from f in System.IO.Directory.GetFiles ("/tmp") where f == "passwd" select f;' | mono csharp.exe
117
118