c@75: test: json11.cpp json11.hpp test.cpp
c@75: 	$(CXX) -O -std=c++11 json11.cpp test.cpp -o test -fno-rtti -fno-exceptions
c@75: 
c@75: clean:
c@75: 	if [ -e test ]; then rm test; fi
c@75: 
c@75: .PHONY: clean