8 lines
218 B
Makefile
8 lines
218 B
Makefile
|
TEX_FILES = $(find -iname '*.tex')
|
||
|
IMG_SRCS = $(wildcard img/*)
|
||
|
|
||
|
all: $(TEX_FILES) $(IMG_SRCS) Makefile
|
||
|
pdflatex math.tex && pdflatex math.tex
|
||
|
clean:
|
||
|
rm -f *.aux *.bbl *.blg *.log *.pdf *.toc *.nav *.out *.snm *.vrb
|