2014-11-10 22:54:05 +01:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco Twitter Client
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
2015-03-29 17:20:12 +02:00
|
|
|
# Note: linking order is important, do not change it.
|
|
|
|
ifeq ($(POCO_CONFIG),FreeBSD)
|
|
|
|
SYSLIBS += -lssl -lcrypto -lz
|
|
|
|
else
|
2019-08-11 09:58:47 +02:00
|
|
|
ifeq ($(POCO_CONFIG),QNX)
|
|
|
|
SYSLIBS += -lssl -lcrypto -lz
|
|
|
|
else
|
2015-03-29 17:20:12 +02:00
|
|
|
SYSLIBS += -lssl -lcrypto -lz -ldl
|
|
|
|
endif
|
2019-08-11 09:58:47 +02:00
|
|
|
endif
|
2015-03-29 17:20:12 +02:00
|
|
|
|
2014-11-10 22:54:05 +01:00
|
|
|
objects = Twitter TweetApp
|
|
|
|
|
|
|
|
target = tweet
|
|
|
|
target_version = 1
|
2015-03-29 17:20:12 +02:00
|
|
|
target_libs = PocoNetSSL PocoCrypto PocoNet PocoUtil PocoJSON PocoXML PocoFoundation
|
2014-11-10 22:54:05 +01:00
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|
|
|
|
|
|
|
|
ifdef POCO_UNBUNDLED
|
|
|
|
SYSLIBS += -lz -lpcre -lexpat
|
|
|
|
endif
|