annotate help/Makefile @ 436:0dd7fbeba5b1

Added tag stable-1.9.2 for changeset 9c6a269fabb5
author Carl Byington <carl@five-ten-sg.com>
date Thu, 09 Apr 2015 11:34:15 -0700
parents 7eb24880b111
children d29cce60f393
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
360
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
1 a:=../assets/help
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
2 b:=../html
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
3
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
4 all:
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
5 [ -d $(a) ] || mkdir -p $(a)
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
6 [ -d $(b) ] || mkdir -p $(b)
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
7 for i in *.html.in; do \
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
8 f=$$(basename $$i .in); \
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
9 cat header.android $$i footer >$(a)/$$f; \
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
10 cat header.browser $$i footer >$(b)/$$f; \
7eb24880b111 add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
11 done