BOX_TARGETS = body05.shtml \
              body25.shtml \
              body30.shtml \
              body31.shtml \
              body32.shtml \
              body33.shtml \
              body34.shtml \
              body35.shtml \
              body36.shtml \
              body37.shtml \
              body38.shtml \
              body39.shtml \
              body40.shtml \
              box05.shtml \
              box10.shtml \
              box25.shtml \
              skel.shtml

all: clean index.shtml

index.shtml: ${BOX_TARGETS}
	@echo "Making index.shtml..."
	@../bin/lfpagecomposer skel.pre > index.shtml
	@mv index.shtml ../../index.shtml
	@find . -name '*html' -exec $(RM) {} \;

%.shtml: %.pre
	@echo "Making $*..."
	@../../xml/bin/apply_stylesheets.pl $*.pre

clean:
	@echo "Cleaning..."
	@find . -name '*~' -exec $(RM) {} \;
	@find . -name '*html' -exec $(RM) {} \;