annotate xml/Makefile @ 27:807f7e4eaebe
starting update to latest toolchain
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Thu, 08 Nov 2018 11:39:13 -0800 |
parents |
f12df02aa228 |
children |
0bc0b4798d9e |
rev |
line source |
1
|
1 ver:=$(shell grep versionName ../AndroidManifest.xml | cut -d'"' -f2)
|
|
2 pkg:=510ConnectbotMonitor
|
|
3
|
|
4 all:
|
|
5 sed -e 's/@PACKAGE@/$(pkg)/g' -e 's/@VERSION@/$(ver)/g' <510connectbotmonitor.in >510connectbotmonitor
|
|
6 cat header.xml 510connectbotmonitor >510connectbotmonitor.xml
|
|
7 cat header.sgml 510connectbotmonitor >510connectbotmonitor.sgml
|
|
8 rm -f ../html/*html
|
|
9 rm -f ../html/*pdf
|
|
10 xmlto -o ../html xhtml 510connectbotmonitor.xml
|
|
11 xmlto -o ../html pdf 510connectbotmonitor.xml
|
|
12 rm -f 510connectbotmonitor.xml 510connectbotmonitor.sgml
|