1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Makefile.am -- process this file with automake to produce Makefile.in
lib_LTLIBRARIES = libsqlite3cc.la
libsqlite3cc_la_SOURCES = \
database.cc \
exception.cc \
basic_statement.cc \
command.cc \
query.cc \
row.cc \
transaction.cc \
manipulator.cc \
util.cc
|