phrep

Artifact [bb7eec55ab]
Login

Artifact bb7eec55ab162b6e6e7c6139eb0a7baaf10f248e:


# Recursively convert all *.src files into *.php scripts
PHREP	:= phrep -E
PHP	:= php
SRC	:= $(shell find ./ -name '*.src')
all:	$(SRC:.src=.php)

# An updated *.src will renew each *.php file
%.php:	%.src
	$(PHREP) -i $*.src -f -o $*.php
	@#$(PHP) -l $*.php