17 lines
419 B
Makefile
17 lines
419 B
Makefile
all: execution.pdf execution.utf8 execution.ascii pp.pdf pp.utf8 pp.ascii\
|
|
branch.pdf
|
|
|
|
TTYOPT=-rPO=4m -rLL=72m
|
|
PDFOPT=-dpaper=a4 -rPO=4c -rLL=13c
|
|
PREPROC=-k -t -p -R
|
|
|
|
%.pdf: %.ms Makefile
|
|
REFER=ref.i groff -ms $(PREPROC) $(PDFOPT) -Tpdf $< > $@
|
|
-killall -HUP mupdf
|
|
|
|
%.utf8: %.ms
|
|
REFER=ref.i groff -ms $(PREPROC) $(TTYOPT) -Tutf8 $^ > $@
|
|
|
|
%.ascii: %.ms
|
|
REFER=ref.i groff -ms -c $(PREPROC) $(TTYOPT) -Tascii $^ > $@
|