comparison ext/json11/Makefile @ 150:bf8e3e7dd7de

Move some things around, and add overall test script
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 20 Jan 2017 17:45:54 +0000
parents
children d607ae858682
comparison
equal deleted inserted replaced
149:70bf40743d6a 150:bf8e3e7dd7de
1 test: json11.cpp json11.hpp test.cpp
2 $(CXX) -O -std=c++11 json11.cpp test.cpp -o test -fno-rtti -fno-exceptions
3
4 clean:
5 if [ -e test ]; then rm test; fi
6
7 .PHONY: clean