mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 02:22:57 +01:00
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
#
|
|
# Makefile
|
|
#
|
|
# $Id: //poco/Main/Data/ODBC/Makefile#2 $
|
|
#
|
|
# Makefile for Poco ODBC
|
|
#
|
|
# For Unicode support, add following to COMMONFLAGS:
|
|
#
|
|
# -DUNICODE
|
|
#
|
|
# Unicode is supported only for UnixODBC
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
ifeq ($(POCO_CONFIG),MinGW)
|
|
# Lack of unixODBC or iODBC is not an error for MinGW platform since it uses Windows odbc32.lib
|
|
else
|
|
ifeq (0, $(shell test -e /usr/lib/libodbc$(SHAREDLIBLINKEXT); echo $$?))
|
|
SYSLIBS += -lodbc -lodbcinst
|
|
COMMONFLAGS += -DPOCO_UNIXODBC
|
|
else
|
|
ifeq (0, $(shell test -h /usr/lib/libodbc$(SHAREDLIBLINKEXT); echo $$?))
|
|
SYSLIBS += -lodbc -lodbcinst
|
|
COMMONFLAGS += -DPOCO_UNIXODBC
|
|
else
|
|
ifeq (0, $(shell test -e /usr/lib/libiodbc$(SHAREDLIBLINKEXT); echo $$?))
|
|
SYSLIBS += -liodbc -liodbcinst
|
|
COMMONFLAGS += -DPOCO_IODBC
|
|
else
|
|
ifeq (0, $(shell test -h /usr/lib/libiodbc$(SHAREDLIBLINKEXT); echo $$?))
|
|
SYSLIBS += -liodbc -liodbcinst
|
|
COMMONFLAGS += -DPOCO_IODBC
|
|
else
|
|
$(error No ODBC library found. Please install unixODBC or iODBC and try again)
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
objects = Binder ConnectionHandle Connector EnvironmentHandle \
|
|
Extractor ODBCMetaColumn ODBCException ODBCStatementImpl \
|
|
Parameter Preparation SessionImpl TypeInfo Unicode Utility
|
|
|
|
target = PocoODBC
|
|
target_version = $(LIBVERSION)
|
|
target_libs = PocoData PocoFoundation
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|