diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2023-11-02 23:52:54 +0100 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2023-11-04 20:50:10 +0100 |
commit | e13db9239786f0d8d4c670b26dd5fb97397e8b4e (patch) | |
tree | 01b20c2167e38fc72ba0768c04bbfd66ba2d8184 /pandoc/Makefile | |
parent | f5e091505ce0f0e3ffb8ee7f2110d841cdcc5a48 (diff) |
Setup. Provide installation procedure for Pandoc templates
Diffstat (limited to 'pandoc/Makefile')
-rw-r--r-- | pandoc/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/pandoc/Makefile b/pandoc/Makefile new file mode 100644 index 0000000..914849f --- /dev/null +++ b/pandoc/Makefile @@ -0,0 +1,32 @@ +.PHONY: all install uninstall + +all: + @echo Noting to do + +# Install + +ifdef XDG_DATA_HOME +DST = $(XDG_DATA_HOME)/pandoc/templates +else +DST = $(HOME)/.local/share/pandoc/templates +endif + +install: $(DST)/fripost-minutes.latex + +$(DST)/%: % + mkdir -p $(dir $@) + cat < $< > $@ + +uninstall: + rm -fr $(DST)/fripost-minutes.latex + rmdir --ignore-fail-on-non-empty -p $(DST) + +# Test + +test: + make -C tests $@ + +# Clean + +clean: + make -C tests $@ |