Merge pull request #2798 from BrzVlad/fix-sgen-timestamp
[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         build \
21         binary_reference_assemblies \
22         net_4_x \
23         xbuild_12 \
24         xbuild_14
25
26 COMMON_SRCS = \
27         Consts.cs.in                    \
28         Locale.cs                       \
29         MonoTODOAttribute.cs \
30         basic-profile-check.cs          \
31         SR.cs   \
32         AssemblyRef.cs
33
34 DISTFILES = \
35         README.makefiles                \
36         README.platforms                \
37         README.configury                \
38         config-default.make             \
39         corcompare.make                 \
40         corcompare-api.xsl              \
41         executable.make                 \
42         gensources.sh                   \
43         library.make                    \
44         nunit-summary.xsl               \
45         rules.make                      \
46         tests.make                      \
47         $(COMMON_SRCS:%=common/%)       \
48         $(PLATFORMS:%=platforms/%.make) $(PROFILES:%=profiles/%.make)
49
50 dist-local: dist-default
51