2012-04-29 20:52:25 +02:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco Foundation
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
2012-11-13 03:00:37 +01: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 18:25:47 +01:00
|
|
|
Condition CountingStream DateTime LocalDateTime DateTimeFormat DateTimeFormatter DateTimeParser \
|
2012-08-26 05:40:12 +02:00
|
|
|
Debugger DeflatingStream DigestEngine DigestStream DirectoryIterator DirectoryWatcher \
|
2016-02-29 21:53:17 +01:00
|
|
|
Environment Event EventChannel Error EventArgs ErrorHandler Exception FIFOBufferStream FPEnvironment File \
|
2012-06-08 04:24:36 +02:00
|
|
|
FileChannel Formatter FormattingChannel Glob HexBinaryDecoder LineEndingConverter \
|
2017-09-27 20:03:29 +02:00
|
|
|
HexBinaryEncoder InflatingStream JSONString Latin1Encoding Latin2Encoding Latin9Encoding LogFile \
|
2012-04-29 20:52:25 +02:00
|
|
|
Logger LoggingFactory LoggingRegistry LogStream NamedEvent NamedMutex NullChannel \
|
|
|
|
MemoryPool MD4Engine MD5Engine Manifest Message Mutex \
|
|
|
|
NestedDiagnosticContext Notification NotificationCenter \
|
|
|
|
NotificationQueue PriorityNotificationQueue TimedNotificationQueue \
|
2012-11-26 04:36:29 +01:00
|
|
|
NullStream NumberFormatter NumberParser NumericString AbstractObserver \
|
2013-02-20 09:44:25 +01:00
|
|
|
Path PatternFormatter Process PurgeStrategy RWLock Random RandomStream \
|
2013-03-17 18:41:15 +01:00
|
|
|
DirectoryIteratorStrategy RegularExpression RefCountedObject Runnable RotateStrategy \
|
2020-01-12 08:58:36 +01:00
|
|
|
SHA1Engine SHA2Engine 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 20:52:25 +02: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 18:19:19 +02:00
|
|
|
FileStreamFactory URIStreamFactory URIStreamOpener UTF32Encoding UTF16Encoding UTF8Encoding UTF8String \
|
2012-04-29 20:52:25 +02:00
|
|
|
Unicode UnicodeConverter Windows1250Encoding Windows1251Encoding Windows1252Encoding \
|
2013-05-28 04:12:07 +02:00
|
|
|
UUID UUIDGenerator Void Var VarHolder VarIterator Format Pipe PipeImpl PipeStream SharedMemory \
|
2020-01-24 10:41:35 +01:00
|
|
|
MemoryStream FileStream AtomicCounter DataURIStream DataURIStreamFactory
|
2012-04-29 20:52:25 +02:00
|
|
|
|
|
|
|
zlib_objects = adler32 compress crc32 deflate \
|
2013-07-18 13:31:27 +02:00
|
|
|
infback inffast inflate inftrees trees zutil
|
2012-04-29 20:52:25 +02:00
|
|
|
|
2014-10-03 15:17:24 +02: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 20:52:25 +02:00
|
|
|
|
|
|
|
pcre_utf8_objects = pcre_ucd pcre_tables
|
|
|
|
|
|
|
|
ifdef POCO_UNBUNDLED
|
|
|
|
SYSLIBS += -lpcre -lz
|
2015-11-10 14:06:51 +01:00
|
|
|
objects += $(pcre_utf8_objects)
|
2012-04-29 20:52:25 +02:00
|
|
|
else
|
|
|
|
objects += $(zlib_objects) $(pcre_objects) $(pcre_utf8_objects)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(findstring MinGW, $(POCO_CONFIG)), MinGW)
|
|
|
|
objects += EventLogChannel WindowsConsoleChannel
|
|
|
|
else
|
|
|
|
objects += SyslogChannel
|
|
|
|
endif
|
|
|
|
|
|
|
|
target = PocoFoundation
|
|
|
|
target_version = $(LIBVERSION)
|
|
|
|
target_libs =
|
|
|
|
|
2014-08-21 22:05:03 +02:00
|
|
|
ifeq ($(findstring MinGW, $(POCO_CONFIG)), MinGW)
|
2014-12-25 10:53:44 +01:00
|
|
|
$(shell cd src; $(WINDMC) pocomsg.mc)
|
2014-08-21 22:05:03 +02:00
|
|
|
endif
|
|
|
|
|
2012-04-29 20:52:25 +02:00
|
|
|
include $(POCO_BASE)/build/rules/lib
|