# Last edited on 2010-03-13 19:42:33 by stolfi

EXAMPLES := \
  logos-indice

.PHONY: derived-images examples html-index 

# all: derived-images examples html-index
all: examples html-index

derived-images:
	${MAKE} -k -f derived-images.make

examples:
	for ex in ${EXAMPLES} ; do \
	  ${MAKE} -k -f $$ex.make ; \
        done

INDEX_SCRIPTS := \
  make-html-test-page.sh \
  make-html-test-entries.sh
  
html-index: ${INDEX_SCRIPTS} ${IMAGES}
	./make-html-test-page.sh > index.html

