mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 10:32:57 +01:00
22 lines
416 B
Makefile
22 lines
416 B
Makefile
|
#
|
||
|
# Makefile
|
||
|
#
|
||
|
# $Id: //poco/1.4/Net/samples/TwitterClient/Makefile#1 $
|
||
|
#
|
||
|
# Makefile for Poco Twitter Client
|
||
|
#
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/global
|
||
|
|
||
|
objects = Twitter TweetApp
|
||
|
|
||
|
target = tweet
|
||
|
target_version = 1
|
||
|
target_libs = PocoUtil PocoJSON PocoNetSSL PocoCrypto PocoNet PocoXML PocoFoundation
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/exec
|
||
|
|
||
|
ifdef POCO_UNBUNDLED
|
||
|
SYSLIBS += -lz -lpcre -lexpat
|
||
|
endif
|