view help/Makefile @ 396:1f625669d89d

Added tag stable-1.9.0.6 for changeset 74d527fe7f5f
author Carl Byington <carl@five-ten-sg.com>
date Fri, 19 Sep 2014 15:27:51 -0700
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