]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/stepmake/executable-targets.make
Doc-es: various updates.
[lilypond.git] / stepmake / stepmake / executable-targets.make
1 default: $(EXECUTABLE)
2
3 exe: $(EXECUTABLE)
4
5 local-install: installexe
6
7 local-uninstall: uninstallexe
8
9 installexe: all
10         -$(INSTALLPY) -d $(DESTDIR)$(bindir)
11         $(foreach a, $(EXECUTABLES), \
12                 $(INSTALLPY) -m 755 $(outdir)/$(a) \
13                 $(DESTDIR)$(bindir)/$(program_prefix)$(a)$(program_suffix) && ) true
14         $(INSTALLPY) -c -m 755 $(addprefix $(outdir)/, $(SEXECUTABLES)) $(DESTDIR)$(bindir)
15
16 uninstallexe:
17         $(foreach a, $(EXECUTABLES), rm -f \
18                 $(DESTDIR)$(bindir)/$(program_prefix)$(a)$(program_suffix) && ) true
19         $(foreach a, $(SEXECUTABLES), rm -f $(DESTDIR)$(bindir)/$(a) &&) true
20
21