pdf: $(PDFS)
%.pdf: %.md
- pandoc -t latex $^ -o $@
+ pandoc --variable papersize=A4 --variable geometry=margin=2cm -t latex $^ -o $@
html: $(HTMLS)
.md.html:
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