Ignore pdf and generated txt

This commit is contained in:
Rodrigo Arias Mallo 2020-10-08 16:11:49 +02:00
parent 26ea326ded
commit 697d4e652e
2 changed files with 4 additions and 2 deletions

2
garlic/doc/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.pdf
*.txt

View File

@ -1,9 +1,9 @@
all: execution.pdf execution.txt
%.pdf: %.ms
groff -ms -tbl -Tpdf $^ > $@
groff -ms -t -p -Tpdf $^ > $@
#pdfms $^ 2>&1 >$@ | sed 's/^troff: //g'
killall -HUP mupdf
%.txt: %.ms
groff -ms -tbl -Tutf8 $^ > $@
groff -ms -t -p -Tutf8 $^ > $@