mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
26 lines
570 B
Makefile
26 lines
570 B
Makefile
#
|
|
# 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 \
|
|
SessionImpl Connector Utility
|
|
|
|
target = PocoODBC
|
|
target_version = $(LIBVERSION)
|
|
target_libs = PocoData PocoFoundation
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|