comparison help/Makefile @ 360:7eb24880b111

add help files to the web documentation
author Carl Byington <carl@five-ten-sg.com>
date Mon, 04 Aug 2014 08:10:12 -0700
parents
children d29cce60f393
comparison
equal deleted inserted replaced
359:93621e963303 360:7eb24880b111
1 a:=../assets/help
2 b:=../html
3
4 all:
5 [ -d $(a) ] || mkdir -p $(a)
6 [ -d $(b) ] || mkdir -p $(b)
7 for i in *.html.in; do \
8 f=$$(basename $$i .in); \
9 cat header.android $$i footer >$(a)/$$f; \
10 cat header.browser $$i footer >$(b)/$$f; \
11 done