2006-10-23 17:48:43 +02:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
2008-01-28 18:23:19 +01:00
|
|
|
# $Id: //poco/svn/Foundation/Makefile#2 $
|
2006-10-23 17:48:43 +02:00
|
|
|
#
|
|
|
|
# Makefile for Poco Foundation
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
|
|
|
objects = ArchiveStrategy ASCIIEncoding AsyncChannel Base64Decoder Base64Encoder \
|
2007-04-18 18:22:57 +02:00
|
|
|
BinaryReader BinaryWriter Bugcheck ByteOrder Channel Checksum Configurable ConsoleChannel \
|
2006-10-23 17:48:43 +02:00
|
|
|
CountingStream DateTime LocalDateTime DateTimeFormat DateTimeFormatter DateTimeParser \
|
|
|
|
Debugger DeflatingStream DigestEngine DigestStream DirectoryIterator \
|
|
|
|
Environment Event EventArgs ErrorHandler Exception FPEnvironment File Glob \
|
|
|
|
FileChannel Formatter FormattingChannel HexBinaryDecoder LineEndingConverter \
|
|
|
|
HexBinaryEncoder InflatingStream Latin1Encoding Latin9Encoding LogFile Logger \
|
|
|
|
LoggingFactory LoggingRegistry LogStream NamedEvent NamedMutex NullChannel \
|
|
|
|
MemoryPool MD2Engine MD4Engine MD5Engine Manifest Message Mutex \
|
|
|
|
NestedDiagnosticContext Notification NotificationCenter \
|
|
|
|
NotificationQueue NullStream NumberFormatter NumberParser AbstractObserver \
|
|
|
|
Path PatternFormatter Process PurgeStrategy RWLock Random RandomStream \
|
2007-04-25 10:39:02 +02:00
|
|
|
RegularExpression RefCountedObject Runnable RotateStrategy Condition \
|
2006-10-23 17:48:43 +02:00
|
|
|
SHA1Engine Semaphore SharedLibrary SimpleFileChannel \
|
|
|
|
SignalHandler SplitterChannel Stopwatch StreamChannel StreamConverter StreamCopier \
|
2008-11-24 13:56:02 +01:00
|
|
|
StreamTokenizer String StringTokenizer SynchronizedObject \
|
2006-11-17 17:21:51 +01:00
|
|
|
Task TaskManager TaskNotification TeeStream Hash HashStatistic \
|
2006-10-23 17:48:43 +02:00
|
|
|
TemporaryFile TextConverter TextEncoding TextIterator Thread ThreadLocal \
|
2008-04-11 03:37:49 +02:00
|
|
|
ThreadPool ThreadTarget ActiveDispatcher Timer Timespan Timestamp Timezone Token URI \
|
2006-10-23 17:48:43 +02:00
|
|
|
FileStreamFactory URIStreamFactory URIStreamOpener UTF16Encoding Windows1252Encoding \
|
2008-11-16 17:54:37 +01:00
|
|
|
UTF8Encoding UnicodeConverter UUID UUIDGenerator Var VarHolder Void Format \
|
2008-03-22 22:28:05 +01:00
|
|
|
Pipe PipeImpl PipeStream SharedMemory FileStream Unicode UTF8String \
|
|
|
|
adler32 compress crc32 deflate gzio infback inffast inflate inftrees trees zutil \
|
2007-05-02 15:49:53 +02:00
|
|
|
pcre_chartables pcre_compile pcre_globals pcre_maketables pcre_study \
|
2008-09-20 22:12:17 +02:00
|
|
|
pcre_tables pcre_try_flipped pcre_ucd pcre_valid_utf8 \
|
2007-05-02 15:49:53 +02:00
|
|
|
pcre_exec pcre_ord2utf8 pcre_newline pcre_fullinfo pcre_xclass
|
2006-10-23 17:48:43 +02:00
|
|
|
|
2008-02-21 10:08:44 +01:00
|
|
|
ifeq ($(POCO_CONFIG),MinGW)
|
|
|
|
objects += EventLogChannel WindowsConsoleChannel
|
|
|
|
else
|
|
|
|
objects += SyslogChannel
|
|
|
|
endif
|
|
|
|
|
2006-10-23 17:48:43 +02:00
|
|
|
target = PocoFoundation
|
|
|
|
target_version = $(LIBVERSION)
|
|
|
|
target_libs =
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|