Artifact bb7eec55ab162b6e6e7c6139eb0a7baaf10f248e:
- File examples/make/Makefile — part of check-in [b2296bbcf9] at 2015-02-23 17:47:03 on branch trunk — Add trivial example Makefile and Phing binding. (user: mario size: 260)
# 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