11 lines
152 B
Makefile
11 lines
152 B
Makefile
PDFs=trygonometria-liczby-zespolone.pdf wykład-2022-03-10.pdf
|
|
|
|
all: $(PDFs)
|
|
|
|
%.pdf: %.tex
|
|
pdflatex $<
|
|
pdflatex $<
|
|
|
|
clean:
|
|
rm -f *.log *.aux $(PDFs)
|