blob: 93c02265b8f01f53ccea796ae3e074398b34bff5 [file] [log] [blame]
Michael Clark4504df72007-03-13 08:26:20 +00001Building on Unix with gcc and autotools
2
3If checking out from CVS:
4
5 cp /usr/share/libtool/ltmain.sh .
6 aclocal-1.6
7 automake-1.6 --add-missing
8 autoconf
9
10Then configure, make, make install
11
12
13Test programs
14
15To build the test programs run 'make check'
16
17
18Linking to libjson
19
20If your system has pkgconfig then you can just add this to your makefile
21
22CFLAGS += $(shell pkg-config --cflags json)
23LDFLAGS += $(shell pkg-config --libs json)