blob: dd16bdd6ef91fd2c12004f0947967d3518d53eea [file] [log] [blame]
Christopher Dunnd2fa6642014-09-10 18:01:31 -07001all: build test-amalgamate
2
3build:
4 mkdir -p build/debug
Christopher Dunnb2a1ca52014-09-16 12:25:54 -07005 cd build/debug; cmake -DCMAKE_BUILD_TYPE=debug -DJSONCPP_LIB_BUILD_SHARED=ON -G "Unix Makefiles" ../..
Christopher Dunnd2fa6642014-09-10 18:01:31 -07006 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