diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2021-11-01 22:56:26 +0100 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2021-11-01 22:56:26 +0100 |
commit | 83d8c8ed0b643f7ad2f8154a9ae247bcb87ec6cb (patch) | |
tree | 8ecc5556647b7ecc04bb1702a2ce2dee26c55eef | |
parent | ŠEEEEEEEEEEEEEEEEEEEEE GEO (diff) | |
download | sola-gimb-3-83d8c8ed0b643f7ad2f8154a9ae247bcb87ec6cb.tar sola-gimb-3-83d8c8ed0b643f7ad2f8154a9ae247bcb87ec6cb.tar.gz sola-gimb-3-83d8c8ed0b643f7ad2f8154a9ae247bcb87ec6cb.tar.bz2 sola-gimb-3-83d8c8ed0b643f7ad2f8154a9ae247bcb87ec6cb.tar.lz sola-gimb-3-83d8c8ed0b643f7ad2f8154a9ae247bcb87ec6cb.tar.xz sola-gimb-3-83d8c8ed0b643f7ad2f8154a9ae247bcb87ec6cb.tar.zst sola-gimb-3-83d8c8ed0b643f7ad2f8154a9ae247bcb87ec6cb.zip |
-rw-r--r-- | geo/.gitignore | 1 | ||||
-rw-r--r-- | geo/Makefile | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/geo/.gitignore b/geo/.gitignore new file mode 100644 index 0000000..a136337 --- /dev/null +++ b/geo/.gitignore @@ -0,0 +1 @@ +*.pdf diff --git a/geo/Makefile b/geo/Makefile new file mode 100644 index 0000000..82d23f6 --- /dev/null +++ b/geo/Makefile @@ -0,0 +1,7 @@ +pdfs := $(subst .md,.pdf,$(wildcard *.md)) +default: $(pdfs) +%.pdf: %.md + pandoc -V geometry:margin=1cm $< -o $@ +.PHONY: clean +clean: + rm -rf $(pdfs) |