blob: 8ea9451bdcca8fd1684e4b4dd57deed36226b4c2 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# title package specific rules
# file make/Rules.make
# urg
$(outdir)/%.ly: %.lym4
$(M4) $< | sed "s/\`/,/g" > $@
$(outdir)/%: %.in
rm -f $@
cat $< | $(sed-atfiles) | $(sed-atvariables) > $@
include $(depth)/make/Substitute.make
# $(depth)/make/$(outdir)/%.make: $(depth)/make/%.in
# rm -f $@
# echo "$(basename $(@F)) = \\" > $@
# cat $< | $(sed-newline) | $(sed-endline) | $(sed-quotes) >> $@
# echo >> $@
# echo >> $@
# HUH???
$(outdir)/%.hh: $(doc-dir)/%.in
rm -f $@
echo '_(' > $@
cat $< | $(sed-quotes) | $(sed-newline) | $(sed-quote-line) >> $@
echo ');' >> $@
|