mirror of
https://github.com/eddyem/lectures.git
synced 2025-12-06 02:35:18 +03:00
12 lines
181 B
Makefile
12 lines
181 B
Makefile
SRCS = $(wildcard *.tex)
|
|
PDFS = $(SRCS:.tex=.pdf)
|
|
|
|
|
|
all: $(PDFS)
|
|
|
|
%.pdf : %.tex
|
|
latexmk --pdf $<
|
|
|
|
clean:
|
|
rm -f *.aux *.log *.nav *.out *.snm *.backup *.toc *~ *.fls *.fdb_latexmk
|