mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 02:22:57 +01:00
aaddff0f41
Solaris compilation fixes VS90 project file Makefile few tidy-up code fixes
24 lines
600 B
Makefile
24 lines
600 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 = PocoMySQL
|
|
target_version = $(LIBVERSION)
|
|
target_libs = PocoData PocoFoundation
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|