blob: beeba53d5f6e5fe0fb3509226175b129bcb51e95 [file] [log] [blame]
Michael Clark4504df72007-03-13 08:26:20 +00001Building on Unix with gcc and autotools
2
3If checking out from CVS:
4
Michael Clarkf6a6e482007-03-13 08:26:23 +00005 sh autogen.sh
Michael Clark4504df72007-03-13 08:26:20 +00006
7Then configure, make, make install
8
9
10Test programs
11
12To build the test programs run 'make check'
13
14
15Linking to libjson
16
17If your system has pkgconfig then you can just add this to your makefile
18
19CFLAGS += $(shell pkg-config --cflags json)
20LDFLAGS += $(shell pkg-config --libs json)