From 251103ffd3486a46f940c4cafcae154747e21802 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Tue, 13 Oct 2020 12:13:06 +0200 Subject: [PATCH] Fix tbl preprocessor option --- garlic/doc/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/garlic/doc/Makefile b/garlic/doc/Makefile index e30f27e..36e6eeb 100644 --- a/garlic/doc/Makefile +++ b/garlic/doc/Makefile @@ -1,9 +1,8 @@ all: execution.pdf execution.txt %.pdf: %.ms - groff -ms -t -p -Tpdf $^ > $@ - #pdfms $^ 2>&1 >$@ | sed 's/^troff: //g' - killall -HUP mupdf + groff -ms -t -Tpdf $^ > $@ + #killall -HUP mupdf %.txt: %.ms - groff -ms -t -p -Tutf8 $^ > $@ + groff -ms -t -Tutf8 $^ > $@