diff --git a/Makefile b/Makefile index 28fb9cf..a7c2efa 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ SRCS=$(shell find examples -type f -name "*.tex") PDFS=$(shell echo $(SRCS:.tex=.pdf) | sed -e "s/examples\\///g") +all: $(PDFS) + %.pdf: examples/%.tex latexmk $< -all: $(PDFS) - clean: rm -rf build