[corlib] Use temp directory for assemblies in SaveTest.Save() (#5727)
[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         test -n '$(MONO_CORLIB_VERSION)'
16         sed -e 's,@''MONO_VERSION@,$(MONO_VERSION),' -e 's,@''MONO_CORLIB_VERSION@,$(MONO_CORLIB_VERSION),' $< > $@
17
18 PLATFORMS = darwin linux win32
19 PROFILES = \
20         basic \
21         build \
22         binary_reference_assemblies \
23         net_4_x \
24         xbuild_12 \
25         xbuild_14
26
27 COMMON_SRCS = \
28         Consts.cs.in                    \
29         Locale.cs                       \
30         MonoTODOAttribute.cs \
31         basic-profile-check.cs          \
32         SR.cs   \
33         AssemblyRef.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         rules.make                      \
46         tests.make                      \
47         $(COMMON_SRCS:%=common/%)       \
48         $(PLATFORMS:%=platforms/%.make) $(PROFILES:%=profiles/%.make)
49
50 dist-local: dist-default
51