438
|
1 ver:=$(shell grep versionName ../app/src/main/AndroidManifest.xml | cut -d'"' -f2)
|
0
|
2 pkg:=510Connectbot
|
360
|
3 t:=../html
|
0
|
4
|
|
5 all:
|
|
6 sed -e 's/@PACKAGE@/$(pkg)/g' -e 's/@VERSION@/$(ver)/g' <510connectbot.in >510connectbot
|
|
7 cat header.xml 510connectbot >510connectbot.xml
|
|
8 cat header.sgml 510connectbot >510connectbot.sgml
|
360
|
9 [ -d $(t) ] || mkdir $(t)
|
|
10 rm -f $(t)/*html
|
|
11 rm -f $(t)/*pdf
|
|
12 xmlto -o $(t) xhtml 510connectbot.xml
|
|
13 xmlto -o $(t) pdf 510connectbot.xml
|
0
|
14 rm -f 510connectbot.xml 510connectbot.sgml
|