poco/Data/ODBC/testsuite/Makefile

27 lines
536 B
Makefile
Raw Normal View History

2007-05-23 01:06:46 +00:00
#
# Makefile
#
# $Id: //poco/Main/Data/ODBC/testsuite/Makefile#1 $
#
# Makefile for Poco SQLite testsuite
#
include $(POCO_BASE)/build/rules/global
ifeq ($(OSNAME),Darwin)
SYSLIBS += -liodbc -liodbcinst
else
SYSLIBS += -lodbc -lodbcinst
endif
objects = ODBCTestSuite Driver \
ODBCDB2Test ODBCMySQLTest ODBCOracleTest \
ODBCPostgreSQLTest ODBCSQLiteTest ODBCSQLServerTest \
SQLExecutor
target = testrunner
target_version = 1
target_libs = PocoODBC PocoData PocoFoundation CppUnit
include $(POCO_BASE)/build/rules/exec