view help/Makefile @ 426:9b9821808222

Added tag stable-1.9.0-8 for changeset b284b8f9e535
author Carl Byington <carl@five-ten-sg.com>
date Tue, 11 Nov 2014 10:48:32 -0800
parents 7eb24880b111
children d29cce60f393
line wrap: on
line source

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