26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# in a makefile recipe, $< denotes the first dependency; $@ the target
# design_spec.html : $(SRCFILES) $(CSVFILES)
# asciidoc -b html5 -a icons -a iconsdir=$(DISPATH)/images/icons -a toc2 design_spec.txt
#
all : server.ps megatest_manual.html client.ps complex-itemmap.png
megatest_manual.html : megatest_manual.txt *.txt installation.txt *png
asciidoc -b html5 -a icons -a iconsdir=$(DISPATH)/images/icons -a toc2 megatest_manual.txt
# dos2unix megatest_manual.html
megatest.pdf : megatest_manual.txt *.txt *png
a2x -a toc -f pdf megatest_manual.txt
server.ps : server.dot
dot -Tps server.dot > server.ps
client.ps : client.dot
dot -Tps client.dot > client.ps
|
|
|
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# in a makefile recipe, $< denotes the first dependency; $@ the target
# design_spec.html : $(SRCFILES) $(CSVFILES)
# asciidoc -b html5 -a icons -a iconsdir=$(DISPATH)/images/icons -a toc2 design_spec.txt
#
all : server.ps megatest_manual.html client.ps complex-itemmap.png megatest_manual.pdf
megatest_manual.html : megatest_manual.txt *.txt installation.txt *png
asciidoc -b html5 -a icons -a iconsdir=$(DISPATH)/images/icons -a toc2 megatest_manual.txt
# dos2unix megatest_manual.html
megatest_manual.pdf : megatest_manual.txt *.txt *png
a2x -a toc -f pdf megatest_manual.txt
server.ps : server.dot
dot -Tps server.dot > server.ps
client.ps : client.dot
dot -Tps client.dot > client.ps
|