]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.57
authorfred <fred>
Sun, 19 Apr 1998 22:59:44 +0000 (22:59 +0000)
committerfred <fred>
Sun, 19 Apr 1998 22:59:44 +0000 (22:59 +0000)
make/Executable.make [new file with mode: 0644]

diff --git a/make/Executable.make b/make/Executable.make
new file mode 100644 (file)
index 0000000..69894dd
--- /dev/null
@@ -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    
+