Prepare server documentation document

This commit is contained in:
JPT
2018-09-12 22:19:28 +02:00
parent 585325c064
commit a9bdaf3919
4 changed files with 153 additions and 4 deletions
+17 -4
View File
@@ -2,6 +2,7 @@
MA_NAME="MA-Master"
CA_DOC_NAME="CA-DOC-Master"
SRV_DOC_NAME="SRV-DOC-Master"
LAST_EXPORT=`cat LAST_EXPORT`
@@ -19,15 +20,27 @@ render_ca_doc:
#pdflatex -output-directory build ${CA_DOC_NAME}.tex
pdflatex -output-directory build ${CA_DOC_NAME}.tex
render_srv_doc:
pdflatex -output-directory build ${SRV_DOC_NAME}.tex
#bibtex build/${SRV_DOC_NAME}
#pdflatex -output-directory build ${SRV_DOC_NAME}.tex
pdflatex -output-directory build ${SRV_DOC_NAME}.tex
clean:
cd build; rm -v *.aux *.bbl *.blg *.log *.out *.toc
cleanall:
rm -rfv build; mkdir build
viewer:
okular build/${NAME}.pdf
viewer_ma:
okular build/${MA_NAME}.pdf
show: cleanall render_ma render_ca_doc viewer
viewer_ca_doc:
okular build/${CA_DOC_NAME}.pdf
release: cleanall render_ma render_ca_doc clean
viewer_srv_doc:
okular build/${SRV_DOC_NAME}.pdf
show: cleanall render_ma render_ca_doc render_srv_doc viewer_ma viewer_ca_doc viewer_srv_doc
release: cleanall render_ma render_ca_doc render_srv_doc clean