From e13db9239786f0d8d4c670b26dd5fb97397e8b4e Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Thu, 2 Nov 2023 23:52:54 +0100 Subject: Setup. Provide installation procedure for Pandoc templates --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ce3a1fa..e6dff0b 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,7 @@ tmp.sty: $(addprefix tex/, $(addsuffix .sty, $(SRC))) test: make -C $@ clean make -C $@ + make -C pandoc $@ # Compilation for installation @@ -44,17 +45,20 @@ DST_PDF := $(TEXMF)/doc install: \ $(addprefix $(DST_STY)/, $(STY)) \ $(addprefix $(DST_PDF)/, $(PDF)) - texhash $(TEXMF) + make -C pandoc $@ $(DST_STY)/%.sty: %.sty mkdir -p $(dir $@) cp $< $@ + texhash $(TEXMF) $(DST_PDF)/%.pdf: %.pdf mkdir -p $(dir $@) cp $< $@ + texhash $(TEXMF) uninstall: + make -C pandoc $@ rm -f $(DST_STY)/* $(DST_PDF)/$(PKG).pdf texhash $(TEXMF) rmdir --ignore-fail-on-non-empty -p $(DST_STY) $(DST_PDF) @@ -62,7 +66,8 @@ uninstall: # Clean clean: - make -C test clean + make -C pandoc $@ + make -C test $@ rm -f tmp.sty rm -f *.aux *.hd *.log *.out rm -f *.dtx *.ins *.pdf *.sty -- cgit v1.2.3