/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
6 by edam
- fixed .am files so the library gets built!
3
AM_CPPFLAGS = -I$(top_srcdir)/include
4
5 by edam
- updated README
5
lib_LTLIBRARIES = libsqlite3cc.la
7 by edam
- removed "OK" from test-main when test is successful
6
5 by edam
- updated README
7
libsqlite3cc_la_SOURCES = \
16 by edam
- renamed database to connection to better identify what it is (would database_connection be better though?)
8
	connection.cc \
5 by edam
- updated README
9
	exception.cc \
10
	basic_statement.cc \
11
	command.cc \
12
	query.cc \
13
	row.cc \
14
	transaction.cc \
15
	manipulator.cc \
16
	util.cc
7 by edam
- removed "OK" from test-main when test is successful
17
libsqlite3cc_la_LIBADD = \
18
	-lboost_thread-mt \
19
	-lsqlite3
20
libsqlite3cc_la_LDFLAGS = -version-info @LIBSQLITE3CC_INTERFACE@