Changeset - 88f38214308d
[Not reviewed]
0 1 0
Bradley Kuhn (bkuhn) - 7 years ago 2017-05-09 14:48:48
bkuhn@ebb.org
Change base name to the one in this presentation.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
presentations/20min-violation-intro/Makefile
Show inline comments
 
# Makefile for Presentation
 
#
 
# You can change the PRESENTATION_BASE below, or if you like, or set it as
 
# an environment variable before you type make.
 

	
 
ifndef PRESENTATION_BASE
 
PRESENTATION_BASE=specific-sections
 
PRESENTATION_BASE=violation-intro
 
endif 
 

	
 
DO_INCREMENTAL_POINTS = -i -s
 

	
 

	
 
# This should be the path to your checkout of the repository.  Under that
 
# directory, you must have a checkout of /Admin/Forms/TeX.
 

	
 
PATH := $(PATH):/usr/share/tex4ht
 

	
 

	
 
PANDOC=/usr/bin/pandoc
 
TEX4HT=tex4ht
 
T4HT=t4ht
 
PDFLATEX = pdflatex
 
LATEX = /usr/bin/latex
 
BIBTEX = bibtex
 
FIG2DEV = fig2dev
 
DVIPS=/usr/bin/dvips
 

	
 
PDF_FIGS = ui/conservancy/logo.pdf
 
EPS_FIGS = ui/conservancy/logo.eps
 

	
 
all:	err $(PRESENTATION_BASE).ps $(PRESENTATION_BASE).html
 
all:	$(PRESENTATION_BASE).html
 

	
 
.SUFFIXES: .fig .postscript .eps .pdf .pstex_t .pstex .ps .dvi .tex
 

	
 
.postscript.pdf:
 
	ps2pdf $< $@
 

	
 
.postscript.eps:
 
	ps2epsi $< $@
 

	
 
.dvi.ps:
 
	$(DVIPS) $< -o $@
 

	
 
.tex.dvi:
 
	$(LATEX) $<
 

	
 
.fig.pdf:
 
	$(FIG2DEV) -L pdf -p "portrait" -c $< > $@
 

	
 
.fig.pstex_t:
 
	$(FIG2DEV) -L pstex_t $< > $@
 

	
 
.fig.pstex:
 
	$(FIG2DEV) -L pstex $< > $@
0 comments (0 inline, 0 general)