]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/stepmake/executable-targets.make
* lily/general-scheme.cc: Compile fixes: include wchar.h, string.h.
[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         -$(INSTALL) -d $(DESTDIR)$(bindir)
11         $(foreach a, $(EXECUTABLES), \
12                 $(INSTALL) -m 755 $(outdir)/$(a) \
13                 $(DESTDIR)$(bindir)/$(program_prefix)$(a)$(program_suffix) && \
14                 strip $(bindir)/$(program_prefix)$(a)$(program_suffix) && ) true
15         $(foreach a, $(SEXECUTABLES), \
16                 $(INSTALL) -m 755 $(outdir)/$(a) $(DESTDIR)$(bindir) &&) true
17
18 uninstallexe:
19         $(foreach a, $(EXECUTABLES), rm -f \
20                 $(DESTDIR)$(bindir)/$(program_prefix)$(a)$(program_suffix) && ) true
21         $(foreach a, $(SEXECUTABLES), rm -f $(DESTDIR)$(bindir)/$(a) &&) true
22
23