2014-08-13 10:39:27 +01:00
|
|
|
thisdir = build
|
|
|
|
SUBDIRS =
|
|
|
|
include ../build/rules.make
|
|
|
|
|
|
|
|
BUILT_FILES = common/Consts.cs
|
|
|
|
|
|
|
|
all-local install-local test-local run-test-local csproj-local run-test-ondotnet-local uninstall-local doc-update-local: $(BUILT_FILES)
|
|
|
|
@:
|
|
|
|
|
|
|
|
clean-local:
|
|
|
|
-rm -f $(BUILT_FILES) deps/*
|
|
|
|
|
|
|
|
common/Consts.cs: common/Consts.cs.in $(wildcard config.make)
|
|
|
|
test -n '$(MONO_VERSION)'
|
|
|
|
sed -e 's,@''MONO_VERSION@,$(MONO_VERSION),' $< > $@
|
|
|
|
|
|
|
|
PLATFORMS = darwin linux win32
|
|
|
|
PROFILES = \
|
|
|
|
basic \
|
|
|
|
build \
|
2015-04-26 19:10:23 +01:00
|
|
|
binary_reference_assemblies \
|
2016-02-22 11:00:01 -05:00
|
|
|
net_4_x \
|
2015-04-07 09:35:12 +01:00
|
|
|
xbuild_12 \
|
|
|
|
xbuild_14
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
COMMON_SRCS = \
|
|
|
|
Consts.cs.in \
|
|
|
|
Locale.cs \
|
|
|
|
MonoTODOAttribute.cs \
|
2015-04-07 09:35:12 +01:00
|
|
|
basic-profile-check.cs \
|
2016-08-03 10:59:49 +00:00
|
|
|
SR.cs \
|
|
|
|
AssemblyRef.cs
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
DISTFILES = \
|
|
|
|
README.makefiles \
|
|
|
|
README.platforms \
|
|
|
|
README.configury \
|
|
|
|
config-default.make \
|
|
|
|
corcompare.make \
|
|
|
|
corcompare-api.xsl \
|
|
|
|
executable.make \
|
|
|
|
gensources.sh \
|
|
|
|
library.make \
|
|
|
|
nunit-summary.xsl \
|
|
|
|
rules.make \
|
|
|
|
tests.make \
|
|
|
|
$(COMMON_SRCS:%=common/%) \
|
|
|
|
$(PLATFORMS:%=platforms/%.make) $(PROFILES:%=profiles/%.make)
|
|
|
|
|
|
|
|
dist-local: dist-default
|
|
|
|
|