## ============================================================================= ## Makefile -- to generate the IFT2030 HTML demos ## ## felipe ## ## COMMENTS: ## ## Takes any non updated qh file and compile from it an html file ## ## Copyright (C) 2000, ## (RALI) -- All rights reserved. ## ## ============================================================================ QHTML = ../../htmlization QH_PAGES = \ devoir1.qh HTML_PAGES = $(QH_PAGES:%.qh=%.html) # ---------------------------------------------- %.html : %.qh $(QHTML) -s -d "`date`" $(@:.html=) mv $@ $(@:.html=-blank.html) $(QHTML) -p "../../" -d "`date`" $(@:.html=) chmod 644 $@ %.qh : %.qh : $(QH_INCLUDES) # ---------------------------------------------- all: $(HTML_PAGES) clean: \rm -f *.html htmlization