2012-04-29 18:52:25 +00:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# $Id: //poco/1.4/Foundation/Makefile#4 $
|
|
|
|
#
|
|
|
|
# Makefile for Poco Foundation
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
2012-11-12 20:00:37 -06:00
|
|
|
objects = ArchiveStrategy Ascii ASCIIEncoding AsyncChannel \
|
|
|
|
Base32Decoder Base32Encoder Base64Decoder Base64Encoder \
|
2013-12-12 18:33:29 +01:00
|
|
|
BinaryReader BinaryWriter Bugcheck ByteOrder Channel Checksum Clock Configurable ConsoleChannel \
|
2013-03-10 12:25:47 -05:00
|
|
|
Condition CountingStream DateTime LocalDateTime DateTimeFormat DateTimeFormatter DateTimeParser \
|
2012-08-26 03:40:12 +00:00
|
|
|
Debugger DeflatingStream DigestEngine DigestStream DirectoryIterator DirectoryWatcher \
|
2015-09-30 11:03:03 +02:00
|
|
|
Environment Event Error EventArgs EventChannel ErrorHandler Exception FIFOBufferStream FPEnvironment \
|
|
|
|
File FileChannel Formatter FormattingChannel Glob HexBinaryDecoder LineEndingConverter \
|
2015-02-10 09:25:17 -06:00
|
|
|
HexBinaryEncoder InflatingStream JSONString Latin1Encoding Latin2Encoding Latin9Encoding \
|
|
|
|
LogFile Logger LoggingFactory LoggingRegistry LogStream NamedEvent NamedMutex NullChannel \
|
2012-04-29 18:52:25 +00:00
|
|
|
MemoryPool MD4Engine MD5Engine Manifest Message Mutex \
|
|
|
|
NestedDiagnosticContext Notification NotificationCenter \
|
|
|
|
NotificationQueue PriorityNotificationQueue TimedNotificationQueue \
|
2012-11-25 21:36:29 -06:00
|
|
|
NullStream NumberFormatter NumberParser NumericString AbstractObserver \
|
2013-02-20 09:44:25 +01:00
|
|
|
Path PatternFormatter Process PurgeStrategy RWLock Random RandomStream \
|
2013-03-17 12:41:15 -05:00
|
|
|
DirectoryIteratorStrategy RegularExpression RefCountedObject Runnable RotateStrategy \
|
2012-04-29 18:52:25 +00:00
|
|
|
SHA1Engine Semaphore SharedLibrary SimpleFileChannel \
|
2013-02-19 21:29:58 +01:00
|
|
|
SignalHandler SplitterChannel SortedDirectoryIterator Stopwatch StreamChannel \
|
|
|
|
StreamConverter StreamCopier StreamTokenizer String StringTokenizer SynchronizedObject \
|
2012-04-29 18:52:25 +00:00
|
|
|
Task TaskManager TaskNotification TeeStream Hash HashStatistic \
|
|
|
|
TemporaryFile TextConverter TextEncoding TextIterator TextBufferIterator Thread ThreadLocal \
|
|
|
|
ThreadPool ThreadTarget ActiveDispatcher Timer Timespan Timestamp Timezone Token URI \
|
2012-06-21 16:19:19 +00:00
|
|
|
FileStreamFactory URIStreamFactory URIStreamOpener UTF32Encoding UTF16Encoding UTF8Encoding UTF8String \
|
2012-04-29 18:52:25 +00:00
|
|
|
Unicode UnicodeConverter Windows1250Encoding Windows1251Encoding Windows1252Encoding \
|
2013-05-27 21:12:07 -05:00
|
|
|
UUID UUIDGenerator Void Var VarHolder VarIterator Format Pipe PipeImpl PipeStream SharedMemory \
|
2012-04-29 18:52:25 +00:00
|
|
|
MemoryStream FileStream AtomicCounter
|
|
|
|
|
|
|
|
zlib_objects = adler32 compress crc32 deflate \
|
2013-07-18 13:31:27 +02:00
|
|
|
infback inffast inflate inftrees trees zutil
|
2012-04-29 18:52:25 +00:00
|
|
|
|
2014-10-03 23:17:24 +10:00
|
|
|
pcre_objects = pcre_config pcre_chartables pcre_compile pcre_globals pcre_maketables \
|
|
|
|
pcre_study pcre_byte_order pcre_valid_utf8 pcre_dfa_exec pcre_get pcre_jit_compile\
|
|
|
|
pcre_exec pcre_ord2utf8 pcre_newline pcre_fullinfo pcre_xclass pcre_refcount pcre_string_utils \
|
|
|
|
pcre_version
|
2012-04-29 18:52:25 +00:00
|
|
|
|
|
|
|
pcre_utf8_objects = pcre_ucd pcre_tables
|
|
|
|
|
|
|
|
ifdef POCO_UNBUNDLED
|
|
|
|
SYSLIBS += -lpcre -lz
|
|
|
|
else
|
|
|
|
objects += $(zlib_objects) $(pcre_objects) $(pcre_utf8_objects)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(findstring MinGW, $(POCO_CONFIG)), MinGW)
|
|
|
|
objects += EventLogChannel WindowsConsoleChannel
|
|
|
|
else
|
|
|
|
objects += SyslogChannel
|
|
|
|
endif
|
|
|
|
|
2015-01-29 11:14:39 -02:00
|
|
|
ifeq ($(findstring Android, $(POCO_CONFIG)), Android)
|
|
|
|
objects += AndroidLogChannel
|
|
|
|
endif
|
|
|
|
|
2012-04-29 18:52:25 +00:00
|
|
|
target = PocoFoundation
|
|
|
|
target_version = $(LIBVERSION)
|
|
|
|
target_libs =
|
|
|
|
|
2014-08-21 15:05:03 -05:00
|
|
|
ifeq ($(findstring MinGW, $(POCO_CONFIG)), MinGW)
|
2014-12-25 09:53:44 +00:00
|
|
|
$(shell cd src; $(WINDMC) pocomsg.mc)
|
2014-08-21 15:05:03 -05:00
|
|
|
endif
|
|
|
|
|
2012-04-29 18:52:25 +00:00
|
|
|
include $(POCO_BASE)/build/rules/lib
|