9 lines
112 B
Makefile
9 lines
112 B
Makefile
TEXFILE=$(wildcard *.tex)
|
|
TARGET=${TEXFILE:.tex=}
|
|
|
|
${TARGET}:
|
|
pdflatex $@
|
|
bibtex $@
|
|
pdflatex $@
|
|
pdflatex $@
|