summaryrefslogtreecommitdiff
path: root/Makefile
blob: 09cde87285e3b6c5c1dcb8b121b5b4ae3fa7524f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
TARGET=$(subst .tex,.pdf,$(wildcard assignment*.tex))

all: $(TARGET)

%.pdf: %.tex
	latexmk -pdf $<

clean:
	latexmk -C

.PHONY: clean