33 lines
609 B
Makefile
33 lines
609 B
Makefile
#!/usr/bin/make
|
|
|
|
all: ETD_version.pdf
|
|
pdftk copyright_page.pdf title_page.pdf abstract.pdf ETD_version.pdf cat output diss_ecology_of_online_communities.pdf
|
|
|
|
# use the following section for Rnw/knitr documents
|
|
# all: $(patsubst %.Rnw,%.pdf,$(wildcard *.Rnw))
|
|
# %.tex: %.Rnw
|
|
# Rscript -e "library(knitr); knit('$<')"
|
|
|
|
%.pdf: %.tex
|
|
latexmk -f -pdf $<
|
|
|
|
clean:
|
|
latexmk -C *.tex
|
|
rm -f *.tmp *.run.xml
|
|
rm -f vc
|
|
rm -f *.bbl
|
|
|
|
# the following lines are useful for Rnw/knitr
|
|
# rm -rf cache/ figure/
|
|
# rm -f *.tex
|
|
|
|
viewpdf: all
|
|
evince *.pdf
|
|
|
|
vc: resources/vc-git
|
|
|
|
pdf: all
|
|
|
|
.PHONY: clean all
|
|
# .PRECIOUS: %.tex
|