82 lines
1.3 KiB
Makefile
82 lines
1.3 KiB
Makefile
|
thisdir = tools
|
||
|
|
||
|
per_profile_dirs = \
|
||
|
al \
|
||
|
linker \
|
||
|
tuner \
|
||
|
culevel \
|
||
|
genxs \
|
||
|
mkbundle \
|
||
|
monop \
|
||
|
mono-service \
|
||
|
mono-xsd \
|
||
|
resgen \
|
||
|
gacutil \
|
||
|
wsdl \
|
||
|
xbuild
|
||
|
|
||
|
net_4_0_dirs := \
|
||
|
$(per_profile_dirs) \
|
||
|
csharp \
|
||
|
corcompare \
|
||
|
compiler-tester \
|
||
|
mono-xmltool \
|
||
|
mono-shlib-cop \
|
||
|
sgen \
|
||
|
mconfig \
|
||
|
installutil \
|
||
|
nunitreport \
|
||
|
pdb2mdb \
|
||
|
sqlsharp \
|
||
|
sqlmetal \
|
||
|
svcutil \
|
||
|
ictool \
|
||
|
disco \
|
||
|
soapsuds \
|
||
|
browsercaps-updater \
|
||
|
cil-strip \
|
||
|
macpack \
|
||
|
dtd2rng \
|
||
|
dtd2xsd \
|
||
|
mdoc \
|
||
|
mod \
|
||
|
installvst \
|
||
|
lc \
|
||
|
mono-configuration-crypto \
|
||
|
ccrewrite \
|
||
|
cccheck \
|
||
|
security \
|
||
|
mdbrebase \
|
||
|
ikdasm
|
||
|
|
||
|
net_2_0_dirs := \
|
||
|
$(per_profile_dirs)
|
||
|
|
||
|
build_SUBDIRS = gacutil security culevel
|
||
|
net_2_0_SUBDIRS := $(basic_SUBDIRS) $(net_2_0_dirs)
|
||
|
net_4_0_SUBDIRS := $(net_4_0_dirs) $(basic_SUBDIRS)
|
||
|
net_4_5_SUBDIRS := $(net_4_0_SUBDIRS)
|
||
|
|
||
|
SUBDIRS = $(basic_SUBDIRS) $(net_2_0_SUBDIRS)
|
||
|
DIST_SUBDIRS = $(SUBDIRS) $(net_4_0_dirs)
|
||
|
|
||
|
include ../build/rules.make
|
||
|
|
||
|
DISTFILES = \
|
||
|
assemblies.xml \
|
||
|
mono-win32-setup-dark.bmp \
|
||
|
mono-win32-setup-light.bmp \
|
||
|
mono-win32-setup.nsi \
|
||
|
scan-tests.pl \
|
||
|
tinderbox/smtp.c \
|
||
|
tinderbox/tinderbox.sh \
|
||
|
removecomments.sh
|
||
|
|
||
|
test-local csproj-local run-test-local run-test-ondotnet-local all-local install-local uninstall-local doc-update-local:
|
||
|
@:
|
||
|
|
||
|
dist-local: dist-default
|
||
|
|
||
|
clean-local:
|
||
|
rm -f *.exe *.dll *.pdb cormissing.xml
|