2007-05-12 16:41:03 +02:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# $Id: //poco/Main/DataConnectors/ODBC/Makefile#2 $
|
|
|
|
#
|
|
|
|
# Makefile for Poco ODBC
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
|
|
|
ifeq ($(OSNAME),Darwin)
|
|
|
|
SYSLIBS += -liodbc -liodbcinst
|
|
|
|
else
|
|
|
|
SYSLIBS += -lodbc -lodbcinst
|
|
|
|
endif
|
|
|
|
|
|
|
|
objects = Binder ConnectionHandle DataTypes EnvironmentHandle \
|
|
|
|
Extractor ODBCColumn ODBCException ODBCStatementImpl Parameter Preparation \
|
2007-05-15 20:34:37 +02:00
|
|
|
SessionImpl Connector Utility
|
2007-05-12 16:41:03 +02:00
|
|
|
|
|
|
|
target = PocoODBC
|
|
|
|
target_version = $(LIBVERSION)
|
|
|
|
target_libs = PocoData PocoFoundation
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|