From: fred Date: Sun, 19 Apr 1998 22:59:44 +0000 (+0000) Subject: lilypond-0.1.57 X-Git-Tag: release/1.5.59~5963 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=08e650e2f235630bdf50261a6cd0a1c20d78af28;p=lilypond.git lilypond-0.1.57 --- diff --git a/make/Executable.make b/make/Executable.make new file mode 100644 index 0000000000..69894dd1b3 --- /dev/null +++ b/make/Executable.make @@ -0,0 +1,15 @@ +localinstall: installexe + +localuninstall: uninstallexe + +installexe: all + $(INSTALL) -d $(bindir) + for a in $(EXECUTABLES); do \ + $(INSTALL) -m 755 $(outdir)/$$a $(bindir); \ + done + +uninstallexe: + for a in $(EXECUTABLES); do \ + rm -f $(bindir)/$$a; \ + done +