/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc
5 by edam
- updated README
1
# Makefile.am -- process this file with automake to produce Makefile.in
2
7 by edam
- removed "OK" from test-main when test is successful
3
CPPFLAGS = -I$(top_srcdir)/include
6 by edam
- fixed .am files so the library gets built!
4
5 by edam
- updated README
5
check_PROGRAMS = test-main
7 by edam
- removed "OK" from test-main when test is successful
6
8 by edam
- moved dependancy on boost_filesystem-mt from the library to test-main
7
test_main_SOURCES = \
8
	test-main.cc
9
test_main_LDADD = \
10
	../src/libsqlite3cc.la \
37 by Tim Marston
fixed building of test program with boost libraries
11
	-lboost_filesystem \
12
	-lboost_system
7 by edam
- removed "OK" from test-main when test is successful
13
14
TESTS = test-main