-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
172 lines (161 loc) · 4.49 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
SOURCES =
SOURCES = #advcombat.tex \
alignment.tex \
alt.traits.tex \
armor.tex \
backgrounds.tex \
baseclass.tex \
bookofgears.tex \
combat.tex \
combat2.tex \
conditions.tex \
cover.tex \
dungeonsofnote.tex \
dungeons.tex \
economics.tex \
elementalfeats.tex \
entire-web.tex \
entire-print.tex \
feats.tex \
FiendClasses.tex \
fiendishrules.tex \
fiendishtaint.tex \
fiendspheres.tex \
highadventure.tex \
logistics.tex \
magic.tex \
masscombat.tex \
multiclassing.tex \
necrointro.tex \
necromancerfeats.tex \
necromaticlocations.tex \
necromaticspells.tex \
oddraces.tex \
otherspheres.tex \
outsiderfeats.tex \
prcintro.tex \
RoWintro.tex \
ruleinhell.tex \
social.tex \
specialabilities.tex \
#spells.tex \
undeadmonsters.tex \
undead.tex \
underdark.tex \
weapons.tex \
worldwar.tex \
wrapper.tex \
writings.tex \
baseclasses/adept.tex \
baseclasses/assassin.tex \
baseclasses/barbarian.tex \
baseclasses/conduit.tex \
baseclasses/community/curator.tex \
baseclasses/elementalist.tex \
baseclasses/fiendishbrute.tex \
baseclasses/fighter.tex \
baseclasses/firemage.tex \
baseclasses/genie.tex \
baseclasses/jester.tex \
baseclasses/community/kantianpaladin.tex \
baseclasses/knight.tex \
baseclasses/marshal.tex \
#baseclasses/community/mechanuswarrior.tex \
baseclasses/monk.tex \
baseclasses/puppeteer.tex \
baseclasses/samurai.tex \
baseclasses/community/shadowwarrior.tex \
baseclasses/community/snowscaper.tex \
baseclasses/community/sohei.tex \
baseclasses/soldier.tex \
baseclasses/soulborn.tex \
baseclasses/community/spherelock.tex \
baseclasses/spiritshaman.tex \
baseclasses/community/stormlord.tex \
baseclasses/summoner.tex \
baseclasses/thiefacrobat.tex \
baseclasses/totemist.tex \
baseclasses/truefiend.tex \
baseclasses/community/warmage.tex \
baseclasses/warrior.tex \
prestige/community/arcanearcher.tex \
prestige/community/arcanestrategist.tex \
prestige/barrister.tex \
prestige/pending/berzerker.tex \
prestige/community/bignob.tex \
prestige/pending/bladefighter.tex \
prestige/community/bladesinger.tex \
prestige/boatman.tex \
prestige/bonebladereaper_revised.tex \
prestige/bonebladereaper.tex \
prestige/bonerider.tex \
prestige/celestialbeacon.tex \
prestige/corpselight.tex \
prestige/community/crusaderelemental.tex \
prestige/deathking.tex \
prestige/deathknight.tex \
prestige/community/defenderofwoods.tex \
prestige/defiler.tex \
prestige/demonsamurai.tex \
prestige/community/disciplespiritwave.tex \
prestige/community/dragondisciple.tex \
prestige/dragonlancer.tex \
prestige/community/drunkenmaster.tex \
prestige/dungeonveteran.tex \
prestige/community/eldritchknight.tex \
prestige/community/enlighteneddisciple.tex \
prestige/community/gentlemonk.tex \
prestige/ghoulparagon.tex \
prestige/community/golemknight.tex \
prestige/heartlessmage.tex \
prestige/hellwalker.tex \
prestige/community/holycrusader.tex \
prestige/initiateofblacktower.tex \
prestige/pending/invisibleblade.tex \
prestige/legendarystrategist.tex \
prestige/lorddamned.tex \
prestige/community/lunarknight.tex \
prestige/lurker.tex \
prestige/community/maelstrom.tex \
prestige/masterofnecromanticmysteries.tex \
prestige/masterofsnakemountain.tex \
prestige/community/meteorninja.tex \
prestige/monitor.tex \
prestige/ninjaofgax.tex \
prestige/community/ogremage.tex \
prestige/progenitor.tex \
prestige/pumpkinking.tex \
prestige/seekerofthelosttraditions.tex \
prestige/seeroftempest.tex \
prestige/skindancer.tex \
prestige/soulmerchant.tex \
prestige/speakerfordead.tex \
prestige/strangerwithburningeyes.tex \
prestige/swordwraithparagon.tex \
prestige/thiefofsouls.tex \
prestige/community/tigermonk.tex \
prestige/uttercold.tex \
prestige/vampireparagon.tex \
prestige/widowqueen.tex
#all: entire.pdf
#.PHONY: clean
entire-web.pdf: $(SOURCES)
# Needs 3 passes to get everything correct.
xelatex entire-web.tex
xelatex entire-web.tex
xelatex entire-web.tex
entire-print.pdf: $(SOURCES)
# Needs 3 passes to get everything correct.
xelatex entire-print.tex
xelatex entire-print.tex
xelatex entire-print.tex
clean:
rm -f *aux *log *out *pdf *toc
web: entire-web.pdf
print: entire-print.pdf
web-complete:
make clean && make web && cp entire-web.pdf ../Tome\ Web.pdf && make clean
print-complete:
make clean && make print && cp entire-print.pdf ../Tome\ Print.pdf && make clean
full:
make clean && make print && make web && cp entire-print.pdf ../Tome\ Print.pdf && cp entire-web.pdf ../Tome\ Web.pdf && make clean