]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/stepmake/Scripts.make
release: 1.0.2
[lilypond.git] / stepmake / stepmake / Scripts.make
1 # Scripts.make
2
3
4 include $(stepdir)/Script_files.make
5
6 all: $(PERL_SCRIPTS) $(PYTHON_SCRIPTS) $(SH_SCRIPTS)
7
8 $(outdir)/%: %.pl
9         cat $< | $(sed-atvariables) > $@
10         chmod 755 $@
11
12 #FIXME.  Check for bash?
13 $(outdir)/%: %.sh
14         cat $< | $(sed-atvariables) > $@
15         chmod 755 $@
16
17
18 $(outdir)/%: %.py
19         cat $< | $(sed-atvariables) > $@
20         chmod 755 $@
21