From 23943693fa07f5e96e0e7c2400088d2ebb65e5bf Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 26 Jul 1998 11:26:38 +0000 Subject: [PATCH] lilypond-1.0.1 --- stepmake/stepmake/Scripts.make | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 stepmake/stepmake/Scripts.make diff --git a/stepmake/stepmake/Scripts.make b/stepmake/stepmake/Scripts.make new file mode 100644 index 0000000000..a0e79f74e0 --- /dev/null +++ b/stepmake/stepmake/Scripts.make @@ -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 $@ + -- 2.39.5