2006-10-23 18:21:00 +02:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
2008-01-28 18:30:40 +01:00
|
|
|
# $Id: //poco/svn/Util/Makefile#1 $
|
2006-10-23 18:21:00 +02:00
|
|
|
#
|
|
|
|
# Makefile for Poco Util
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
|
|
|
objects = AbstractConfiguration Application ConfigurationMapper \
|
|
|
|
ConfigurationView HelpFormatter IniFileConfiguration LayeredConfiguration \
|
|
|
|
LoggingConfigurator LoggingSubsystem MapConfiguration \
|
|
|
|
Option OptionException OptionProcessor OptionSet \
|
|
|
|
PropertyFileConfiguration Subsystem SystemConfiguration \
|
|
|
|
XMLConfiguration FilesystemConfiguration ServerApplication \
|
2009-04-14 12:47:37 +02:00
|
|
|
Validator IntValidator RegExpValidator OptionCallback \
|
|
|
|
Timer TimerTask
|
2006-10-23 18:21:00 +02:00
|
|
|
|
2008-02-21 10:08:44 +01:00
|
|
|
ifeq ($(POCO_CONFIG),MinGW)
|
|
|
|
objects += WinService
|
|
|
|
endif
|
|
|
|
|
2006-10-23 18:21:00 +02:00
|
|
|
target = PocoUtil
|
|
|
|
target_version = $(LIBVERSION)
|
|
|
|
target_libs = PocoFoundation PocoXML
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|