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

Side by Side Diff: make/generic-rules.make

Issue 551070043: Issue 5571: streamline cat | sed | sed (Closed)
Patch Set: Created 5 years, 5 months 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 | « no previous file | stepmake/stepmake/python-module-rules.make » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # title package specific rules 1 # title package specific rules
2 # file make/Rules.make 2 # file make/Rules.make
3 3
4 # urg 4 # urg
5 $(outdir)/%.ly: %.lym4 5 $(outdir)/%.ly: %.lym4
6 $(call ly_progress,Making,$@,< lym4) 6 $(call ly_progress,Making,$@,< lym4)
7 $(M4) $< | sed "s/\`/,/g" > $@ 7 $(M4) $< | sed "s/\`/,/g" > $@
8 8
9 $(outdir)/%: %.in 9 $(outdir)/%: %.in
10 $(call ly_progress,Making,$@,< in) 10 $(call ly_progress,Making,$@,< in)
11 rm -f $@ 11 rm -f $@
12 » cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@ 12 » sed $(sed-atfiles) $(sed-atvariables) < $< > $@
13 13
14 14
15 15
16 include $(depth)/make/substitute.make 16 include $(depth)/make/substitute.make
17 17
18 18
19 19
OLDNEW
« no previous file with comments | « no previous file | stepmake/stepmake/python-module-rules.make » ('j') | no next file with comments »

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