SqlBulkCopy Implementation
[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         net_2_0 \
22         net_3_5 \
23         net_4_0 \
24         net_4_5
25
26 COMMON_SRCS = \
27         Consts.cs.in                    \
28         Locale.cs                       \
29         MonoTODOAttribute.cs \
30         basic-profile-check.cs
31
32 DISTFILES = \
33         README.makefiles                \
34         README.platforms                \
35         README.configury                \
36         config-default.make             \
37         corcompare.make                 \
38         corcompare-api.xsl              \
39         executable.make                 \
40         gensources.sh                   \
41         library.make                    \
42         nunit-summary.xsl               \
43         rules.make                      \
44         tests.make                      \
45         $(COMMON_SRCS:%=common/%)       \
46         $(PLATFORMS:%=platforms/%.make) $(PROFILES:%=profiles/%.make)
47
48 dist-local: dist-default
49