2 # Scripts that we install
4 # Starting with Mono 2.0, the majority of the tools default to the
5 # 2.0 profile. Commands that support the 1.0 toolchain and must
6 # run under 1.0 have the number 1 appended to their command names
7 # (for example mcs1 is the C# 1.0 compiler) and are listed in the
8 # scripts_1_0 compat variable.
10 # To preserve compatibility with old Makefiles and tools we keep the
11 # command names that had the suffix 2 (like wsdl2)
14 SCRIPT_IN=script.bat.in
15 FILTER=sed -e 's,\.bat\.exe,\.exe,g' -e 's,/,\\,g'
23 COMPAT_1_0_SUFFIX=1$(SCRIPT_SUFFIX)
24 COMPAT_2_0_SUFFIX=2$(SCRIPT_SUFFIX)
25 COMPAT_4_0_SUFFIX=4$(SCRIPT_SUFFIX)
28 $(scripts_4_0_umask) \
33 $(scripts_rpmhelpers) \
41 $(scripts_mono_configuration_crypto)
44 bin_SCRIPTS += $(scripts_4_0)
49 makecert$(SCRIPT_SUFFIX) \
58 gacutil2$(SCRIPT_SUFFIX) \
59 mdoc$(SCRIPT_SUFFIX) \
60 monop2$(SCRIPT_SUFFIX) \
61 resgen2$(SCRIPT_SUFFIX) \
65 disco$(SCRIPT_SUFFIX) \
66 dtd2xsd$(SCRIPT_SUFFIX) \
67 dtd2rng$(SCRIPT_SUFFIX) \
68 installvst$(SCRIPT_SUFFIX) \
69 genxs$(SCRIPT_SUFFIX) \
70 macpack$(SCRIPT_SUFFIX) \
71 mono-cil-strip$(SCRIPT_SUFFIX) \
72 prj2make$(SCRIPT_SUFFIX) \
73 soapsuds$(SCRIPT_SUFFIX) \
74 caspol$(SCRIPT_SUFFIX) \
75 cert2spc$(SCRIPT_SUFFIX) \
76 certmgr$(SCRIPT_SUFFIX) \
77 chktrust$(SCRIPT_SUFFIX) \
78 crlupdate$(SCRIPT_SUFFIX) \
79 csharp$(SCRIPT_SUFFIX) \
80 httpcfg$(SCRIPT_SUFFIX) \
82 mconfig$(SCRIPT_SUFFIX) \
84 monolinker$(SCRIPT_SUFFIX) \
85 mono-api-info$(SCRIPT_SUFFIX) \
86 mono-shlib-cop$(SCRIPT_SUFFIX) \
87 mozroots$(SCRIPT_SUFFIX) \
88 permview$(SCRIPT_SUFFIX) \
89 pdb2mdb$(SCRIPT_SUFFIX) \
91 mono-xmltool$(SCRIPT_SUFFIX) \
92 setreg$(SCRIPT_SUFFIX) \
93 secutil$(SCRIPT_SUFFIX) \
94 signcode$(SCRIPT_SUFFIX) \
95 sgen$(SCRIPT_SUFFIX) \
96 sqlmetal$(SCRIPT_SUFFIX) \
97 sqlsharp$(SCRIPT_SUFFIX) \
98 svcutil$(SCRIPT_SUFFIX) \
99 xbuild$(SCRIPT_SUFFIX) \
100 ccrewrite$(SCRIPT_SUFFIX)
117 # these are the new defaults, 2.0 profile-based commands
119 # we can move scripts_1_0 scripts here as we see fit, if we need to
120 # keep a 1.0 command available, we should additionally put it on
121 # the scripts_1_0_compat list
125 ilasm$(SCRIPT_SUFFIX) \
126 gacutil$(SCRIPT_SUFFIX) \
127 mkbundle$(SCRIPT_SUFFIX) \
128 monop$(SCRIPT_SUFFIX) \
129 resgen$(SCRIPT_SUFFIX) \
132 scripts_service = mono-service mono-service2
133 scripts_nunit = nunit-console$(SCRIPT_SUFFIX) nunit-console2$(SCRIPT_SUFFIX)
134 scripts_rpmhelpers = mono-find-provides mono-find-requires
135 scripts_mono_configuration_crypto = mono-configuration-crypto$(SCRIPT_SUFFIX)
137 CLEANFILES = $(scripts_mono_configuration_crypto) $(scripts_4_0_umask) $(scripts_2_0) $(scripts_defaults) $(scripts_4_0) mono-service mono-service2 nunit-console nunit-console2 mono-find-provides mono-find-requires mod $(MDOC_SUBCOMMANDS)
138 DISTCLEANFILES = $(pkgconfig_DATA) $(scripts_rpmhelpers)
144 script_umask.bat.in \
147 mono-find-provides.in \
148 mono-find-requires.in \
158 mono-configuration-crypto.in
168 plat_bindir = $(bindir)
169 mono_instdir = $(prefix)/lib/mono
171 plat_bindir = $(shell cygpath -m $(libdir))
172 mono_instdir = $(shell cygpath -m $(libdir))/mono
175 plat_bindir = $(bindir)
176 mono_instdir = $(prefix)/lib/mono
180 REWRITE_COMMON = sed \
181 -e 's,@''bindir@,$(bindir),g' \
182 -e 's,@''plat_bindir@,$(plat_bindir),g' \
183 -e 's,@''mono_instdir@,$(mono_instdir),g' \
184 -e 's,@''gtkdir@,$(gtkdir),g'
186 REWRITE = $(REWRITE_COMMON) -e 's,@''mono_interp@,$(mono_interp),g'
187 REWRITE_DEBUG = $(REWRITE_COMMON) -e 's,@''mono_interp@,$(mono_interp) --debug,g'
189 REWRITE2 = $(REWRITE) -e 's,@''framework_version@,2.0,g'
190 REWRITE2_1 = $(REWRITE) -e 's,@''framework_version@,2.1,g'
192 REWRITE4 = $(REWRITE) -e 's,@''framework_version@,4.0,g'
194 REWRITE4 = $(REWRITE) -e 's,@''framework_version@,2.0,g'
196 REWRITE2_DEBUG = $(REWRITE_DEBUG) -e 's,@''framework_version@,2.0,g'
198 peverify: peverify.in Makefile
199 $(REWRITE_COMMON) $(srcdir)/peverify.in > $@.tmp
203 $(REWRITE_COMMON) $(srcdir)/mcs.in > $@.tmp
206 gmcs: gmcs.in Makefile
207 $(REWRITE_COMMON) $(srcdir)/gmcs.in > $@.tmp
210 dmcs: dmcs.in Makefile
211 $(REWRITE_COMMON) $(srcdir)/dmcs.in > $@.tmp
214 mono-service: mono-service.in Makefile
215 $(REWRITE4) -e 's,@''exe_name@,$@,g' $(srcdir)/mono-service.in > $@.tmp
218 mono-service2: mono-service.in Makefile
219 $(REWRITE2) -e 's,@''exe_name@,$@,g' $(srcdir)/mono-service.in > $@.tmp
222 nunit-console$(SCRIPT_SUFFIX): $(SCRIPT_IN) Makefile
223 $(REWRITE2_DEBUG) -e 's,@''exe_name@,nunit-console,g' $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
226 nunit-console2$(SCRIPT_SUFFIX): $(SCRIPT_IN) Makefile
227 $(REWRITE2_DEBUG) -e 's,@''exe_name@,nunit-console,g' $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
230 #FIXME: this is not the correct rule for mod.bat.
231 mod$(SCRIPT_SUFFIX): mod.in Makefile
232 $(REWRITE2) -e "s,@""exe_name@,mod,g" $(srcdir)/mod.in > $@.tmp
235 #FIXME: this is not the correct rule for bat files.
236 $(scripts_4_0_umask): script_umask.in Makefile
237 n=`echo $@ | sed 's,$(COMPAT_4_0_SUFFIX)$$,,'`; \
238 $(REWRITE4) -e "s,@""exe_name@,$$n,g" $(srcdir)/script_umask.in | $(FILTER) > $@.tmp
241 $(scripts_defaults): $(SCRIPT_IN) Makefile
242 n=`echo $@ | sed 's,$(COMPAT_4_0_SUFFIX)$$,,'`; \
243 $(REWRITE4) -e "s,@""exe_name@,$$n,g" $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
246 $(scripts_2_0): $(SCRIPT_IN) Makefile
247 n=`echo $@ | sed 's,$(COMPAT_2_0_SUFFIX)$$,,'`; \
248 $(REWRITE2) -e "s,@""exe_name@,$$n,g" $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
251 $(scripts_4_0): $(SCRIPT_IN) Makefile
252 n=`echo $@ | sed 's,$(COMPAT_4_0_SUFFIX)$$,,'`; \
253 $(REWRITE4) -e "s,@""exe_name@,$$n,g" $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
256 $(scripts_mono_configuration_crypto): mono-configuration-crypto.in
257 $(REWRITE4) -e "s,@exe_name@,mono-configuration-crypto,g" $(srcdir)/mono-configuration-crypto.in > $@.tmp
260 $(MDOC_SUBCOMMANDS): Makefile
261 for script in $(MDOC_SUBCOMMANDS) ; do \
262 cmd=`echo $$script | sed 's/mdoc-//'` ; \
263 echo "#!/bin/sh" > $$script ; \
264 echo "exec mdoc $$cmd \"\$$@\"" >> $$script; \