1#
2# Makefile
3#
4# Makefile for Poco Data testsuite
5#
6
7include $(POCO_BASE)/build/rules/global
8
9ifeq ($(findstring SunOS,$(POCO_HOST_OSNAME)),SunOS)
10  POCO_SUN_FORTE = $(findstring SunOS-SunForte, $(POCO_CONFIG))
11  POCO_SUN_STUDIO = $(findstring SunOS-SunStudio, $(POCO_CONFIG))
12  ifneq (,$or ($(POCO_SUN_FORTE), $(POCO_SUN_STUDIO)))
13    CXXFLAGS += -erroff=hidevf
14  endif
15endif
16
17objects = DataTestSuite Driver \
18	DataTest SessionPoolTest \
19	Binder Extractor Preparator SessionImpl Connector TestStatementImpl
20
21target         = testrunner
22target_version = 1
23target_libs    = PocoData PocoFoundation CppUnit
24
25include $(POCO_BASE)/build/rules/exec
26