Add Makefile & more examples

This commit is contained in:
2023-12-23 18:36:59 +01:00
parent e3836db8d9
commit d3a7cdc3ee
5 changed files with 830 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
SRCS=$(shell find examples -type f -name "*.tex")
PDFS=$(shell echo $(SRCS:.tex=.pdf) | sed -e "s/examples\\///g")
%.pdf: examples/%.tex
latexmk $<
all: $(PDFS)
clean:
rm -rf build