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