| |
---|
| | INSTALL_FILES+=$(wildcard *.mp3) |
---|
| | # |
---|
| | # List of standard "phony" build targets. |
---|
| | # |
---|
| | TARGETS+=slides notes slides-combined slides-notes figures figures2up combined |
---|
| | TARGETS+=slides notes combined handout figures figures2up slides-notes slides-combined slides-handout |
---|
| | # |
---|
| | .PHONY: $(TARGETS) |
---|
| | |
---|
| | |
---|
| |
---|
| | |
---|
| | # |
---|
| | # Build the slides for the combined document. |
---|
| | # |
---|
| | slides-handout: slides-combined |
---|
| | |
---|
| | slides-combined: slides-combined.pdf |
---|
| | |
---|
| | slides-combined.pdf: $(SLIDES_IN).tex $(SLIDE_IMAGES) $(SLIDE_BACKGROUNDS) |
---|
| | $(LATEXCMD) -jobname=slides-combined '\documentclass[$(LATEX_OPTS),$(FONT_SIZE),$(PAPER_SIZE),handout]{lectureslides}\input{$(SLIDES_IN)}' |
---|
| |
---|
| | |
---|
| | # |
---|
| | # Build the complete combined document. |
---|
| | # |
---|
| | handout: combined |
---|
| | |
---|
| | combined: $(COMBINED).pdf |
---|
| | |
---|
| | $(COMBINED).pdf: $(COMBINED_PREREQS) $(COMBI_IMAGES) $(COMBI_FILES) |
---|
| | $(LATEXCMD) -jobname=$(COMBINED) $< |
---|
| |
---|
|