OLD | NEW |
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 |
OLD | NEW |