annotate xml/Makefile @ 438:d29cce60f393

migrate from Eclipse to Android Studio
author Carl Byington <carl@five-ten-sg.com>
date Thu, 03 Dec 2015 11:23:55 -0800
parents 7eb24880b111
children 13a922d1fc5c
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
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
12 xmlto -o $(t) xhtml 510connectbot.xml
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
13 xmlto -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