forked from hithesis/hithesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
64 lines (45 loc) · 1.09 KB
/
Makefile
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
# Makefile for hithesis document
METHOD = xelatex
# Set opts for latexmk if you use it
LATEXMKOPTS = -xelatex
# Basename of thesis
PACKAGE=hithesis
SOURCES=$(PACKAGE).ins $(PACKAGE).dtx
CLSFILES=dtx-style.sty
# make deletion work on Windows
ifdef SystemRoot
RM = del /Q
OPEN = start
else
RM = rm -f
OPEN = open
endif
.PHONY: all clean distclean dist doc viewdoc cls check
all: doc
cls: $(CLSFILES)
$(CLSFILES): $(SOURCES)
latex $(PACKAGE).ins
viewdoc: doc
$(OPEN) $(PACKAGE).pdf
doc: $(PACKAGE).pdf
ifeq ($(METHOD),latexmk)
$(PACKAGE).pdf: $(CLSFILES)
$(METHOD) $(LATEXMKOPTS) $(PACKAGE).dtx
else ifeq ($(METHOD),xelatex)
$(PACKAGE).pdf: $(CLSFILES)
$(METHOD) $(PACKAGE).dtx
makeindex -s gind.ist -o $(PACKAGE).ind $(PACKAGE).idx
makeindex -s gglo.ist -o $(PACKAGE).gls $(PACKAGE).glo
$(METHOD) $(PACKAGE).dtx
$(METHOD) $(PACKAGE).dtx
else
$(error Unknown METHOD: $(METHOD))
endif
clean:
latexmk -c $(PACKAGE).dtx
-@$(RM) *~ *.idx *.ind *.ilg *.thm *.toe *.bbl
cleanall: clean
-@$(RM) $(PACKAGE).pdf
distclean: cleanall
-@$(RM) $(CLSFILES)
-@$(RM) *.cls *.cfg *.ist *.bst *.sty *.eps