blob: 6993fc56b9dba525544f7ba740ff42b4e4747f05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
FILEROOT=ryesample
SHELL=/bin/sh
VERSION=$(shell grep changes ryethesis.dtx | perl -wlne 'print $$1 if /v([0-9]+\.[0-9]+)/' | sort -n | tail -1)
LATEX=pdflatex
TEXFILES=ryesample.tex
BIBFILES=ryesample.bib
FIGS=figure1.pdf
FILES=README ryethesis.ins ryethesis.dtx ryethesis.pdf ryesample.pdf Makefile
EXTRACLEAN=*.aux *.lof *.lot *.loa *.log *.bbl *.blg *.ind *.ilg *.toc *.idx *.gls *.glo *.out *~ *.nls *.nlo *.ist *.toa *.glg *.acn *.acr *.alg *.fdb_latexmk *.synctex.gz *.dvi auto ryethesis-*.zip
TEXMFFLAGS=-file-line-error -halt-on-error #-interaction=batchmode
TARGETS=ryethesis.cls ryethesis.pdf ryesample.pdf ryethesis-$(VERSION).zip
all: $(TARGETS)
.PHONY: again.and.again once bibtex glossary index nomenclature
once:
@$(LATEX) $(TEXMFFLAGS) $(FILEROOT) || (rm -f $(FILEROOT).pdf; exit 2);
bibtex:
@bibtex -terse $(FILEROOT)
glossary:
@if [ -f $(FILEROOT).ist ]; then makeglossaries -q $(FILEROOT) ; fi
index:
@if [ -f $(FILEROOT).idx ]; then makeindex -q $(FILEROOT) ; fi
nomenclature:
@if [ -f $(FILEROOT).nlo ]; then makeindex -q $(FILEROOT).nlo -s nomencl.ist -o $(FILEROOT).nls; fi
again.and.again:
@if [ $(MAKELEVEL) = 4 ]; then \
echo "Too many nesting levels of make!"; exit 1; \
fi
$(MAKE) once
@if `grep -q -e "There were undefined references" -e "There were multiply-defined labels" -e "Label(s) may have changed. Rerun to get cross-references right" $(FILEROOT).log`; \
then $(MAKE) again.and.again; \
fi
clean:
@rm -rf $(EXTRACLEAN)
clean-all:
@make clean;
@rm -rf $(TARGETS)
$(FILEROOT).pdf: Makefile ryethesis.cls ${TEXFILES} ${BIBFILES} ${FIGS}
@$(MAKE) once
@$(MAKE) bibtex
@$(MAKE) glossary
@$(MAKE) index
@$(MAKE) nomenclature
@$(MAKE) again.and.again
ryethesis.pdf: Makefile ryethesis.dtx
echo "Making "$@
@$(LATEX) $(TEXMFFLAGS) ryethesis.dtx || ( cat ryethesis.log; exit 1 )
@$(LATEX) $(TEXMFFLAGS) ryethesis.dtx || ( cat ryethesis.log; exit 2 )
ryethesis.cls: Makefile ryethesis.ins ryethesis.dtx
echo "Making "$@
@$(LATEX) $(TEXMFFLAGS) ryethesis.ins || ( cat ryethesis.log; exit 1 )
ryethesis-$(VERSION).zip: ${FILES} ${TEXFILES} ${BIBFILES} ${FIGS}
@rm -f ryethesis-*.zip; rm -rf ./ryethesis; mkdir ryethesis; cp $^ ryethesis; zip $@ ryethesis/*; rm -rf ./ryethesis;
|