day2/Makefile
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 02 Apr 2010 15:45:07 +0530
changeset 453 38adf73fd123
parent 367 3c911c958bcf
permissions -rw-r--r--
Merged Vattam and Puneeth branches.

.SUFFIXES: .tex .pdf

.tex.pdf:
	pdflatex $*.tex
	pdflatex $*.tex

SLIDES= session1.pdf \
	session2.pdf \
	session3.pdf \
	session4.pdf \
	session5.pdf \
	session6.pdf

CHEATS= cheatsheet1.pdf \
	cheatsheet2.pdf \
	cheatsheet3.pdf \
	cheatsheet4.pdf 

QUIZ= day2quiz.pdf 

all:	$(SLIDES) $(CHEATS) $(QUIZ)

cheats: $(CHEATS)

slides: $(SLIDES)

quiz: $(QUIZ)

clean-all:
	rm -f *.dvi *.log *.bak *.aux *.bbl *.blg *.idx *.ps *.eps *.pdf *.toc *.out *~ *.vrb *.nav *.snm

clean:
	rm -f *.log *.bak *.aux *.bbl *.blg *.idx *.toc *.out *~ *.vrb *.nav *.snm