Added “handout” as a target alias for “combined”
1 parent 3232dbf commit 3de82f5f30fb3cf1dc11c830ae2f68e1b64da029
Nigel Stanger authored on 21 Jul 2020
Showing 1 changed file
View
6
make-includes/build_lecture_rules.make
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) $<