Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2011-01-12 12:24:32 +0300
committerMarek Safar <marek.safar@gmail.com>2011-01-12 12:25:19 +0300
commit64ec934b0e1aa75b2356290266fcf4415ae427b9 (patch)
treea04d5b1b92dd847e8475bad6a92493b6992db013 /scripts/Makefile.am
parent0bbf0a2abbdcff488ef41024f1f0c8738bebaa9b (diff)
All C# compiler scripts point to mcs.exe now
Diffstat (limited to 'scripts/Makefile.am')
-rw-r--r--scripts/Makefile.am13
1 files changed, 11 insertions, 2 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index 54b470f7203..618bb4599bc 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -36,11 +36,13 @@ bin_SCRIPTS = \
mono-test-install \
peverify \
mcs \
+ gmcs \
mono-heapviz \
$(scripts_mono_configuration_crypto)
if INSTALL_4_0
bin_SCRIPTS += $(scripts_4_0)
+bin_SCRIPTS += dmcs
endif
scripts_4_0_umask = \
@@ -55,14 +57,12 @@ scripts_2_0 = \
al2$(SCRIPT_SUFFIX) \
csharp2$(SCRIPT_SUFFIX) \
gacutil2$(SCRIPT_SUFFIX) \
- gmcs$(SCRIPT_SUFFIX) \
mdoc$(SCRIPT_SUFFIX) \
monop2$(SCRIPT_SUFFIX) \
resgen2$(SCRIPT_SUFFIX) \
wsdl2$(SCRIPT_SUFFIX)
scripts_4_0 = \
- dmcs$(SCRIPT_SUFFIX) \
disco$(SCRIPT_SUFFIX) \
dtd2xsd$(SCRIPT_SUFFIX) \
dtd2rng$(SCRIPT_SUFFIX) \
@@ -148,6 +148,7 @@ EXTRA_DIST = \
mono-find-requires.in \
peverify.in \
mcs.in \
+ dmcs.in \
mono-test-install \
mono-heapviz \
$(MDOC_COMPAT) \
@@ -201,6 +202,14 @@ mcs: mcs.in Makefile
$(REWRITE_COMMON) $(srcdir)/mcs.in > $@.tmp
mv -f $@.tmp $@
+gmcs: mcs.in Makefile
+ $(REWRITE_COMMON) $(srcdir)/mcs.in > $@.tmp
+ mv -f $@.tmp $@
+
+dmcs: dmcs.in Makefile
+ $(REWRITE_COMMON) $(srcdir)/dmcs.in > $@.tmp
+ mv -f $@.tmp $@
+
mono-service: mono-service.in Makefile
$(REWRITE4) -e 's,@''exe_name@,$@,g' $(srcdir)/mono-service.in > $@.tmp
mv -f $@.tmp $@