14 lines
319 B
Makefile
14 lines
319 B
Makefile
JANSSON_CFLAGS := $(shell pkg-config --cflags jansson)
|
|
JANSSON_LIBS := $(shell pkg-config --libs jansson)
|
|
|
|
all: test
|
|
|
|
test-bin: driver.cpp test.cpp jansson.hpp jansson-impl.hpp Makefile
|
|
$(CXX) -o $@ -g -O0 -Wall $(JANSSON_CFLAGS) driver.cpp test.cpp $(JANSSON_LIBS)
|
|
|
|
test: test-bin
|
|
./test-bin
|
|
|
|
clean:
|
|
rm -f test-bin
|