PHP=test.php
HTML=$(PHP:%.php=%.html)

view: $(HTML)
	firefox $<	

%.html: %.php 
	php $< > $@


clean:
	$(RM) $(HTML) *.txt 
