Added doc/protocol to automake.
[doldaconnect.git] / doc / protocol / Makefile.am
CommitLineData
f11a3675
FT
1EXTRA_DIST = cmd protocol.tex
2
3.dvi.ps:
4 dvips -o $@ $<
5
6protocol.dvi: protocol.tex commands.tex protocol.1st
7 latex protocol
8
9protocol.1st: protocol.tex commands.tex
10 latex protocol
11 touch protocol.1st
12
13commands.tex: cmds/*.tex
14 rm -f commands.tex \
15 for f in cmds/*.tex; do \
16 echo "\\begin{reqspec}{${f%.tex}}" >>commands.tex; \
17 cat "$f" >>commands.tex; \
18 echo "\\end{reqspec}" >>commands.tex; \
19 done