1 %.html
: %.html.template
2 awk
'{line = $$0; if (match($$0, /<IMPORT (.*)\/>/, ary) != 0) system("cat " ary[1]); else print line}' $< > $@
4 chryzantem.html
: petals.html center.html face.html stem.html text.html
6 _inner_row_delay _flower_delay petals.html
: make_petals.sh
7 .
/make_petals.sh
> petals.html
9 center.html
: make_center.sh _inner_row_delay
10 .
/make_center.sh
> center.html
12 _face_delay face.html
: make_face.sh _flower_delay
13 .
/make_face.sh
> face.html
15 _stem_delay stem.html
: make_stem.sh _face_delay
16 .
/make_stem.sh
> stem.html
18 text.html
: make_text.sh _stem_delay
19 .
/make_text.sh
> text.html
22 rm -rf
*_delay petals.html center.html face.html stem.html text.html chryzantem.html