ARGH
[ipdf/sam.git] / Makefile
1 #Makefile for Fresher Guide
2
3 NAME=thesis
4 TEX=pdflatex
5
6 all : 
7         make clean
8         make $(NAME).pdf
9
10 $(NAME).pdf : $(NAME).tex
11         rm -f *.aux *.bbl *.log *.toc *.lof *.blg *.lot
12
13         $(TEX) -shell-escape $(NAME)
14         bibtex $(NAME)
15         $(TEX) --shell-escape $(NAME)
16         $(TEX) --shell-escape $(NAME)
17         bibtex $(NAME)
18         $(TEX) --shell-escape $(NAME)
19         $(TEX) --shell-escape $(NAME)
20
21         silent evince $(NAME).pdf
22         rm -f *.bbl *.log *.toc *.lof *.blg *.lot *.aux *.out
23
24
25 clean : 
26         rm -f $(NAME).pdf
27         rm -f *~

UCC git Repository :: git.ucc.asn.au