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