diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2019-09-02 16:58:38 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2019-09-02 16:58:38 +0200 |
commit | 0fe39074819f4e2d480424dd5576bcb4c520e2f8 (patch) | |
tree | de95df53613031d9765d55f6f8f0da4f48ede127 /Makefile | |
parent | d8a252e2d26225a6f883235ec5c4d9fc2ef6fc97 (diff) | |
parent | cf147fe4819c449800a0824ab02d5455bd314b5e (diff) |
Merge branch 'master' into cost-operation-inquiry
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 29 |
1 files changed, 25 insertions, 4 deletions
@@ -1,7 +1,16 @@ + +MDWN = \ + inquiries/2019-03-28-flfd.mdwn \ + inquiries/cost-operation.mdwn \ + +TMP = tmp + ALL = \ -pdf/2019-03-28-flfd.pdf + pdf/2019-03-28-flfd.pdf \ + odt/cost-operation.odt \ + odt/cost-operation.pdf \ -all: pdf $(ALL) +all: pdf odt $(ALL) OPT_PANDOC = \ -f markdown \ @@ -12,8 +21,20 @@ OPT_PANDOC = \ pdf/2019-03-28-flfd.pdf: inquiries/2019-03-28-flfd.mdwn cat $< | sed -f sed/latex.sed | pandoc $(OPT_PANDOC) -o $@ -pdf: +odt/cost-operation.odt: inquiries/cost-operation.mdwn + cat $< | pandoc -s -f markdown -t odt -o $@ + +PAR_CONV = \ + --headless "-env:UserInstallation=file:///tmp/lo-$$$$" \ + --convert-to pdf \ + --outdir "$(abspath $(dir $@))" \ + +%.pdf: %.odt + libreoffice $(PAR_CONV) "$<" + + +pdf odt: mkdir -p $@ clean: - rm -fr pdf + rm -fr pdf odt |