From 80bff4fcdb2f4946b1c92e5246e2a052bde20c38 Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Wed, 28 Oct 2020 06:14:10 +0100 Subject: [PATCH] Adjust PDF size and margins. Remove htmls in distclean. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0d688ba..0d59954 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ markdown: $(MDS) pdf: $(PDFS) %.pdf: %.md - pandoc -t latex $^ -o $@ + pandoc --variable papersize=A4 --variable geometry=margin=2cm -t latex $^ -o $@ html: $(HTMLS) .md.html: @@ -51,7 +51,7 @@ po/A_radical_proposal_to_keep_your_personal_data_safe.nn.po: po/A_radical_propos clean: $(RM) *~ po/*~ distclean: clean - $(RM) $(PDFS) + $(RM) $(PDFS) $(HTMLS) stats: for f in po/*.po; do printf "$$f "; msgfmt --output /dev/null --statistics $$f; done -- 2.47.2