bzr branch
http://bzr.ed.am/sqlite3cc
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# Makefile.am -- process this file with automake to produce Makefile.in CPPFLAGS = -I$(top_srcdir)/include check_PROGRAMS = \ test-main \ test-blob test_main_SOURCES = \ test-main.cc test_main_LDADD = \ ../src/libsqlite3cc.la \ -lboost_filesystem \ -lboost_system test_blob_SOURCES = \ test-blob.cc test_blob_LDADD = \ ../src/libsqlite3cc.la \ -lboost_filesystem \ -lboost_system TESTS = \ test-main \ test-blob |