The previous revision of Make.mk didn't work with separate build
trees. Do it in a way that does.
This commit is contained in:
parent
edbf6b0061
commit
56181c1986
2 changed files with 5 additions and 2 deletions
4
Make.mk
4
Make.mk
|
@ -235,7 +235,9 @@ endif
|
||||||
|
|
||||||
|
|
||||||
info.nr/%: info/%.t
|
info.nr/%: info/%.t
|
||||||
(cd $(srcdir)/info && $(NROFF) CRT.MAC $(notdir $< )) | $(AWK) -f $(filter %/Blank.awk, $^) >$@
|
$(NROFF) $(filter %.MAC, $^) $< | $(AWK) -f $(filter %/Blank.awk, $^) >$@
|
||||||
|
# Pipes in make are a pain. Catch obvious errors:
|
||||||
|
@test -s $@
|
||||||
|
|
||||||
info.html/%.html: info/%.t
|
info.html/%.html: info/%.t
|
||||||
perl $(filter %.pl, $^) $< >$@
|
perl $(filter %.pl, $^) $< >$@
|
||||||
|
|
|
@ -30,4 +30,5 @@
|
||||||
.ev 2
|
.ev 2
|
||||||
.ll 7.8i \" Line length: 7.8 inches
|
.ll 7.8i \" Line length: 7.8 inches
|
||||||
.ev
|
.ev
|
||||||
.so INFO.MAC \" Read in INFO.MAC macros
|
\" .so INFO.MAC \" Read in INFO.MAC macros
|
||||||
|
\" except that's done by make now
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue