diff options
Diffstat (limited to 'bio')
-rw-r--r-- | bio/.gitignore | 1 | ||||
-rw-r--r-- | bio/Makefile | 8 |
2 files changed, 0 insertions, 9 deletions
diff --git a/bio/.gitignore b/bio/.gitignore deleted file mode 100644 index a136337..0000000 --- a/bio/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.pdf diff --git a/bio/Makefile b/bio/Makefile deleted file mode 100644 index cd9bb20..0000000 --- a/bio/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -SHELL := /bin/bash -pdfs := $(subst .md,.pdf,$(wildcard *.md)) -default: $(pdfs) -%.pdf: %.md - pandoc -V geometry:margin=1cm $< -o $@ -.PHONY: clean -clean: - rm -rf $(pdfs) |