mirror of
https://github.com/tristanpenman/valijson.git
synced 2025-01-09 03:08:31 +01:00
8 lines
170 B
Makefile
8 lines
170 B
Makefile
test: json11.cpp json11.hpp test.cpp
|
|
$(CXX) -O -std=c++11 json11.cpp test.cpp -o test -fno-rtti -fno-exceptions
|
|
|
|
clean:
|
|
if [ -e test ]; then rm test; fi
|
|
|
|
.PHONY: clean
|