exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

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