10 lines
183 B
Makefile
10 lines
183 B
Makefile
|
all: execution.pdf execution.txt
|
||
|
|
||
|
%.pdf: %.ms
|
||
|
groff -ms -tbl -Tpdf $^ > $@
|
||
|
#pdfms $^ 2>&1 >$@ | sed 's/^troff: //g'
|
||
|
killall -HUP mupdf
|
||
|
|
||
|
%.txt: %.ms
|
||
|
groff -ms -tbl -Tutf8 $^ > $@
|