Makefile 693 B

123456789101112131415161718192021222324252627
  1. #
  2. # Makefile
  3. #
  4. # $Id: //poco/Main/Data/testsuite/Makefile#7 $
  5. #
  6. # Makefile for Poco Data testsuite
  7. #
  8. include $(POCO_BASE)/build/rules/global
  9. ifeq ($(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
  15. endif
  16. objects = DataTestSuite Driver \
  17. DataTest SessionPoolTest \
  18. Binder Extractor Preparator SessionImpl Connector TestStatementImpl
  19. target = testrunner
  20. target_version = 1
  21. target_libs = PocoData PocoFoundation CppUnit
  22. include $(POCO_BASE)/build/rules/exec