blob: c9b83fa57e587139baf4ccbce895fb90cea990ce (
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
|
.SUFFIXES: .lou .pdf
.lou.pdf:
lout -r2 -Z $< -o $@
LHY-tables.pdf:
lout -Z $< -o $@
LHY-tables.pdf: LHY-tables.lou \
defs.lou \
tables/atdrm.lou \
tables/mdrm.lou \
tables/sadrm.lou \
tables/recovery.lou \
tables/concealed.lou \
tables/maneuver.lou \
tables/transport.lou \
tables/assault.lou \
tables/tracks.lou \
tables/withdrawal.lou \
tables/japanese.lou \
tables/tems.lou \
tables/latw.lou \
tables/leaders.lou \
tables/fate.lou \
tables/mines.lou \
tables/colors.lou \
tables/limited_reactions.lou \
tables/assault_reactions.lou \
tables/deployment.lou \
tables/avfs.lou \
tables/fire_resolution.lou
clean:
-@ rm LHY-tables.pdf *.li *.ld tables/*.ld
-@ find -name "*~" -delete
|