hjiang / jsonxx

A JSON parser in C++

This URL has Read+Write access

jsonxx / Makefile
100644 13 lines (8 sloc) 0.173 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
CXXFLAGS=-Werror -Wall
 
jsonxx_test: jsonxx_test.cc jsonxx.o
 
jsonxx.o: jsonxx.h jsonxx.cc
 
test: jsonxx_test
./jsonxx_test
 
.PHONY: clean
clean:
rm -f jsonxx_test *.o *~