12 lines
258 B
Makefile
12 lines
258 B
Makefile
|
NOTE = !! change the next line to fit your filename; no spaces at file name end !!
|
||
|
FILE = Thesis
|
||
|
|
||
|
all:
|
||
|
pdflatex $(FILE)
|
||
|
bibtex $(FILE)
|
||
|
pdflatex $(FILE)
|
||
|
pdflatex $(FILE)
|
||
|
|
||
|
clean:
|
||
|
rm -f *.dvi *.log *.aux *.bbl *.blg *.toc *.lof *.lot *.cb *.~
|