mirror of
https://github.com/dropbox/json11.git
synced 2024-12-15 08:50:05 +08:00
61ba0a1dd2
Add clean rule to Makefile.
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
|