You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

31 lines
552 B

  1. include ../common.mk
  2. all: VL1.pdf VL1_handout.pdf
  3. VL1.dvi: VL1.tex
  4. $(LATEX) $<
  5. $(LATEX) $<
  6. $(LATEX) $<
  7. VL1.pdf: VL1.tex
  8. $(PDFLATEX) $<
  9. $(PDFLATEX) $<
  10. $(PDFLATEX) $<
  11. VL1_handout.dvi: VL1_handout.tex
  12. $(LATEX) $<
  13. $(LATEX) $<
  14. $(LATEX) $<
  15. VL1_handout.pdf: VL1_handout.tex
  16. $(PDFLATEX) $<
  17. $(PDFLATEX) $<
  18. $(PDFLATEX) $<
  19. clean:
  20. $(RM_R) "_minted-VL1" "_minted-VL1_handout"
  21. $(RM) VL1.dvi VL1_handout.dvi VL1.pdf VL1_handout.pdf *.log *.aux *.nav *.snm *.toc *.out *.vrb *.gz
  22. .PHONY: all clean VL1.dvi VL1.pdf VL1_handout.dvi VL1_handout.pdf