blob: 7a96af8910246f1151aef831db85e5ae25bff80c [file] [log] [blame]
Christopher Dunnd2fa6642014-09-10 18:01:31 -07001all: build test-amalgamate
2
3build:
4 mkdir -p build/debug
5 cd build/debug; cmake -DCMAKE_BUILD_TYPE=debug -DJSONCPP_LIB_BUILD_SHARED=OFF -G "Unix Makefiles" ../..
6 make -C build/debug
7
8# Currently, this depends on include/json/version.h generated
9# by cmake.
10test-amalgamate: build
11 python2.7 amalgamate.py
12 python3.4 amalgamate.py
13
14.PHONY: build