Mercurial > 510Connectbot
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/help/Makefile Mon Aug 04 08:10:12 2014 -0700 @@ -0,0 +1,11 @@ +a:=../assets/help +b:=../html + +all: + [ -d $(a) ] || mkdir -p $(a) + [ -d $(b) ] || mkdir -p $(b) + for i in *.html.in; do \ + f=$$(basename $$i .in); \ + cat header.android $$i footer >$(a)/$$f; \ + cat header.browser $$i footer >$(b)/$$f; \ + done