comparison Makefile.doc @ 46:5de364cb2847

Doc tweaks.
author David Barts <davidb@stashtea.com>
date Mon, 04 May 2020 11:06:14 -0700
parents 3d86f0391168
children
comparison
equal deleted inserted replaced
45:c9cf2b01c91c 46:5de364cb2847
10 echo "" >> $@ 10 echo "" >> $@
11 pandoc --from=html --to=rst $< >> $@ 11 pandoc --from=html --to=rst $< >> $@
12 12
13 %.nrf : %.html 13 %.nrf : %.html
14 echo ".so custom.tmac" > $@ 14 echo ".so custom.tmac" > $@
15 pandoc --from=html --to=ms $< | sed -e 's/^\.LP/.PP/' >> $@ 15 pandoc --from=html --to=ms $< | sed -e 's/^\.LP/.PP/' -e 's/^\.SH/.MYSH/' >> $@
16 16
17 %.ps: %.nrf custom.tmac 17 %.ps: %.nrf custom.tmac
18 groff -Tps -t -ms -mpdfmark $< > $@ 18 groff -Tps -t -mspdf $< > $@
19 19
20 %.pdf : %.ps 20 %.pdf : %.ps
21 ps2pdf $< 21 ps2pdf $<