mirror of
https://git.overleaf.com/6227c8e96fcdc06e56454f24
synced 2024-11-21 11:52:01 +00:00
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
# requires GNU make
|
|
SHELL=/bin/bash
|
|
|
|
.DELETE_ON_ERROR:
|
|
|
|
%.pdf %.aux %.idx: %.tex
|
|
pdflatex -halt-on-error -file-line-error $<
|
|
while grep 'Rerun to get ' $*.log ; do pdflatex -halt-on-error $< ; done
|
|
%.ind: %.idx
|
|
makeindex $*
|
|
%.bbl: %.aux
|
|
bibtex $*
|
|
%.pdftex %.pdftex_t: %.fig
|
|
fig2dev -L pdftex_t -p $*.pdftex $< $*.pdftex_t
|
|
fig2dev -L pdftex $< $*.pdftex
|
|
|
|
all: report.pdf report-submission.pdf
|
|
|
|
report-submission.tex: report.tex
|
|
sed -e 's/^%\(\\submissiontrue\)/\1/' $< >$@
|
|
|
|
report.pdf: logo-dcst-colour.pdf
|
|
|
|
# extract number of first and last page of the main chapters from the AUX file
|
|
WORDCOUNT_FILE=report-submission
|
|
FIRSTPAGE?=$(shell sed -ne 's/^\\newlabel{firstcontentpage}{{[0-9]*}{\([0-9]*\)}.*/\1/p' $(WORDCOUNT_FILE).aux)
|
|
LASTPAGE ?=$(shell sed -ne 's/^\\newlabel{lastcontentpage}{{[0-9]*}{\([0-9]*\)}.*/\1/p' $(WORDCOUNT_FILE).aux)
|
|
|
|
# requires ghostscript
|
|
wordcount: $(WORDCOUNT_FILE).pdf
|
|
gs -q -dSAFER -sDEVICE=txtwrite -o - \
|
|
-dFirstPage=$(FIRSTPAGE) -dLastPage=$(LASTPAGE) $< | \
|
|
egrep '[A-Za-z]{3}' | wc -w
|
|
|
|
clean:
|
|
rm -f *.log *.aux *.toc *.bbl *.ind *.lot *.lof *.out *~
|
|
rm -f report-submission.tex
|