Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1145)

Side by Side Diff: stepmake/stepmake/executable-targets.make

Issue 577690043: Inline executable-* stepmake templates in lily/GNUmakefile (Closed)
Patch Set: scripts directory Created 4 years ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « stepmake/stepmake/executable-rules.make ('k') | stepmake/stepmake/executable-vars.make » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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)) $(DESTDI R)$(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
OLDNEW
« no previous file with comments | « stepmake/stepmake/executable-rules.make ('k') | stepmake/stepmake/executable-vars.make » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b