]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.0.1
authorfred <fred>
Sun, 26 Jul 1998 11:26:38 +0000 (11:26 +0000)
committerfred <fred>
Sun, 26 Jul 1998 11:26:38 +0000 (11:26 +0000)
stepmake/stepmake/Scripts.make [new file with mode: 0644]

diff --git a/stepmake/stepmake/Scripts.make b/stepmake/stepmake/Scripts.make
new file mode 100644 (file)
index 0000000..a0e79f7
--- /dev/null
@@ -0,0 +1,21 @@
+# Scripts.make
+
+
+include $(stepdir)/Script_files.make
+
+all: $(PERL_SCRIPTS) $(PYTHON_SCRIPTS) $(SH_SCRIPTS)
+
+$(outdir)/%: %.pl
+       cat $< | $(sed-atvariables) > $@
+       chmod 755 $@
+
+#FIXME.  Check for bash?
+$(outdir)/%: %.sh
+       cat $< | $(sed-atvariables) > $@
+       chmod 755 $@
+
+
+$(outdir)/%: %.py
+       cat $< | $(sed-atvariables) > $@
+       chmod 755 $@
+