day2/Makefile
changeset 350 385b9df26f25
child 367 3c911c958bcf
equal deleted inserted replaced
349:58366fe3839b 350:385b9df26f25
       
     1 .SUFFIXES: .tex .pdf
       
     2 
       
     3 .tex.pdf:
       
     4 	pdflatex $*.tex
       
     5 	pdflatex $*.tex
       
     6 
       
     7 SLIDES= session1.pdf \
       
     8 	session2.pdf \
       
     9 	session3.pdf \
       
    10 	session4.pdf \
       
    11 	session5.pdf \
       
    12 	session6.pdf
       
    13 
       
    14 CHEATS= cheatsheet1.pdf \
       
    15 	cheatsheet2.pdf \
       
    16 	cheatsheet3.pdf \
       
    17 	cheatsheet4.pdf 
       
    18 
       
    19 QUIZ= day2quiz.pdf 
       
    20 
       
    21 all:	$(SLIDES) $(CHEATS) $(QUIZ)
       
    22 
       
    23 cheats: $(CHEATS)
       
    24 
       
    25 slides: $(SLIDES) $(CHEATS)
       
    26 
       
    27 quiz: $(QUIZ)
       
    28 
       
    29 clean-all:
       
    30 	rm -f *.dvi *.log *.bak *.aux *.bbl *.blg *.idx *.ps *.eps *.pdf *.toc *.out *~ *.vrb *.nav *.snm
       
    31 
       
    32 clean:
       
    33 	rm -f *.log *.bak *.aux *.bbl *.blg *.idx *.toc *.out *~ *.vrb *.nav *.snm
       
    34 
       
    35 
       
    36