10 lines
116 B
Makefile
10 lines
116 B
Makefile
|
PDFs=trygonometria-liczby-zespolone.pdf
|
||
|
|
||
|
all: $(PDFs)
|
||
|
|
||
|
%.pdf: %.tex
|
||
|
pdflatex $<
|
||
|
|
||
|
clean:
|
||
|
rm -f *.log *.aux $(PDFs)
|