* COMException.cs: Added missing colon in ToString.
[mono.git] / mcs / build / Makefile
1 thisdir = build
2 SUBDIRS = 
3 include ../build/rules.make
4
5 BUILT_FILES = common/Consts.cs
6
7 all-local install-local test-local run-test-local run-test-ondotnet-local uninstall-local: $(BUILT_FILES)
8         @:
9
10 clean-local:
11         -rm -f $(BUILT_FILES) deps/*
12
13 common/Consts.cs: common/Consts.cs.in $(wildcard config.make)
14         test -n '$(MONO_VERSION)'
15         sed -e 's,@''MONO_VERSION@,$(MONO_VERSION),' $< > $@
16
17 PLATFORMS = linux win32
18 PROFILES = \
19         basic \
20         net_1_1_bootstrap \
21         default \
22         net_2_0_bootstrap \
23         net_2_0 \
24         net_2_1 \
25         net_1_0 \
26         net_3_5
27
28 COMMON_SRCS = \
29         Consts.cs.in                    \
30         Locale.cs                       \
31         MonoTODOAttribute.cs
32
33 DISTFILES = \
34         README.makefiles                \
35         README.platforms                \
36         README.configury                \
37         config-default.make             \
38         corcompare.make                 \
39         corcompare-api.xsl              \
40         executable.make                 \
41         library.make                    \
42         rules.make                      \
43         $(COMMON_SRCS:%=common/%)       \
44         $(PLATFORMS:%=platforms/%.make) $(PROFILES:%=profiles/%.make)
45
46 dist-local: dist-default
47