You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
345 B
14 lines
345 B
all: build test-amalgamate |
|
|
|
build: |
|
mkdir -p build/debug |
|
cd build/debug; cmake -DCMAKE_BUILD_TYPE=debug -DJSONCPP_LIB_BUILD_SHARED=ON -G "Unix Makefiles" ../.. |
|
make -C build/debug |
|
|
|
# Currently, this depends on include/json/version.h generated |
|
# by cmake. |
|
test-amalgamate: build |
|
python2.7 amalgamate.py |
|
python3.4 amalgamate.py |
|
|
|
.PHONY: build
|
|
|