remove the extract notes script (deprecated)
[beamer-mako] / template / Makefile
index a117f55c9d3f88a04fa976cbfa1cbe80a0899004..ac308642814d94333a28d9732e29b086e5ea52fd 100644 (file)
@@ -1,33 +1,42 @@
 #!/usr/bin/make
 
-all: $(patsubst %.tex,%.pdf,$(wildcard *.tex)) 
+all: notes.config vc $(patsubst %.tex,%.pdf,$(wildcard *.tex)) 
 pdf: all
 
-%.pdf: %.tex
-       #perl -p -e 's/©//' refs.bib > refs-cleaned.bib
-       #recode -d u8..ltex < refs-cleaned.bib > refs-processed.bib
-       mogrify -format pdf figures/logo.svg
+%.pdf: %.tex 
        rubber -fd $<
-       extract-notes $<
 
-clean: 
-       rubber -d --clean *.tex
-       rm -f *.tmp
-       rm -f vc
-       #rm -f refs-cleaned.bib
-       #rm -f refs-processed.bib
-       rm -f figures/logo.pdf
-       rm -f *.pdfpc
+# by default, we produce combined notes/slides output
+notes.config:
+       echo '\setbeameroption{show notes on second screen}' > notes.config
+
+# rules for generating notesonly
+notesonly-config:
+       echo '\setbeameroption{show only notes}' > notes.config
+notesonly: notesonly-config pdf
+
+# rules for generating slides only
+slides-config:
+       echo '' > notes.config
+slides: slides-config pdf
 
 viewpdf: all
        evince *.pdf
 
+pdfpc: notes.config
+       pdfpc -n right *pdf
+
 spell:
        aspell -c -t --tex-check-comments -b text.tex
 
 vc:
        vc-git
 
+clean: 
+       rubber -d --clean *.tex
+       rm -f *.tmp
+       rm -f vc
+       rm -f notes.config
+       rm -f *.pdfpc
 
-
-.PHONY: clean all
+.PHONY: clean all notesonly-config notesonly slides-config slides viewpdf pdfpc spell

Benjamin Mako Hill || Want to submit a patch?