Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[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 csproj-local run-test-ondotnet-local uninstall-local doc-update-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 = darwin linux win32
18 PROFILES = \
19         basic \
20         net_2_0_bootstrap \
21         net_2_0 \
22         moonlight_bootstrap \
23         moonlight_raw \
24         moonlight \
25         net_3_5 \
26         net_4_0_bootstrap \
27         net_4_0 
28
29 COMMON_SRCS = \
30         Consts.cs.in                    \
31         Locale.cs                       \
32         MonoTODOAttribute.cs \
33         basic-profile-check.cs
34
35 DISTFILES = \
36         README.makefiles                \
37         README.platforms                \
38         README.configury                \
39         config-default.make             \
40         corcompare.make                 \
41         corcompare-api.xsl              \
42         executable.make                 \
43         gensources.sh                   \
44         library.make                    \
45         nunit-summary.xsl               \
46         rules.make                      \
47         tests.make                      \
48         $(COMMON_SRCS:%=common/%)       \
49         $(PLATFORMS:%=platforms/%.make) $(PROFILES:%=profiles/%.make)
50
51 dist-local: dist-default
52