Makefile (460B)
1 .PHONY: test clean 2 3 test-custom-write: test-custom-write.c ../mustach-json-c.h ../mustach-json-c.c ../mustach-wrap.c ../mustach.h ../mustach.c 4 @echo building test-custom-write 5 $(CC) $(CFLAGS) $(LDFLAGS) -g -o test-custom-write test-custom-write.c ../mustach.c ../mustach-json-c.c ../mustach-wrap.c -ljson-c 6 7 test: test-custom-write 8 @mustach=./test-custom-write ../dotest.sh json -U must -l must -x must 9 10 clean: 11 rm -f resu.last vg.last test-custom-write 12