mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-16 07:33:28 +01:00
24 lines
604 B
Makefile
24 lines
604 B
Makefile
|
#
|
||
|
# Makefile
|
||
|
#
|
||
|
# $Id: //poco/1.4/Data/MySQL/Makefile#1 $
|
||
|
#
|
||
|
# Makefile for Poco MySQL
|
||
|
#
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/global
|
||
|
|
||
|
SYSLIBS += -L/usr/local/lib/mysql -L/usr/lib/mysql -L/usr/mysql/lib/mysql
|
||
|
INCLUDE += -I/usr/local/include/mysql/ -I/usr/include/mysql/ -I/usr/mysql/include/mysql
|
||
|
SYSFLAGS += -DTHREADSAFE -DNO_TCL
|
||
|
|
||
|
objects = Binder Extractor SessionImpl Connector \
|
||
|
MySQLStatementImpl ResultMetadata MySQLException \
|
||
|
SessionHandle StatementExecutor
|
||
|
|
||
|
target = PocoDataMySQL
|
||
|
target_version = $(LIBVERSION)
|
||
|
target_libs = PocoData PocoFoundation
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/lib
|