annotate xml/Makefile @ 513:13a922d1fc5c

update docs
author Carl Byington <carl@five-ten-sg.com>
date Fri, 10 Feb 2023 17:16:47 -0700
parents d29cce60f393
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
438
d29cce60f393 migrate from Eclipse to Android Studio
Carl Byington <carl@five-ten-sg.com>
parents: 360
diff changeset
1 ver:=$(shell grep versionName ../app/src/main/AndroidManifest.xml | cut -d'"' -f2)
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
2 pkg:=510Connectbot
360
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
3 t:=../html
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
4
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
5 all:
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
6 sed -e 's/@PACKAGE@/$(pkg)/g' -e 's/@VERSION@/$(ver)/g' <510connectbot.in >510connectbot
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
7 cat header.xml 510connectbot >510connectbot.xml
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
8 cat header.sgml 510connectbot >510connectbot.sgml
360
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
9 [ -d $(t) ] || mkdir $(t)
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
10 rm -f $(t)/*html
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
11 rm -f $(t)/*pdf
513
13a922d1fc5c update docs
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
12 xmlto -o $(t) xhtml 510connectbot.xml
13a922d1fc5c update docs
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
13 xmlto --with-dblatex -o $(t) pdf 510connectbot.xml
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
14 rm -f 510connectbot.xml 510connectbot.sgml