2012-04-29 20:52:25 +02:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco Net
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
2012-10-14 23:20:38 +02:00
|
|
|
SHAREDOPT_CXX += -DNet_EXPORTS
|
2012-04-29 20:52:25 +02:00
|
|
|
|
|
|
|
objects = \
|
2014-08-21 23:21:53 +02:00
|
|
|
Net DNS HTTPResponse HostEntry Socket \
|
2013-03-17 18:41:15 +01:00
|
|
|
DatagramSocket HTTPServer IPAddress IPAddressImpl SocketAddress SocketAddressImpl \
|
2012-04-29 20:52:25 +02:00
|
|
|
HTTPBasicCredentials HTTPCookie HTMLForm MediaType DialogSocket \
|
|
|
|
DatagramSocketImpl FilePartSource HTTPServerConnection MessageHeader \
|
|
|
|
HTTPChunkedStream HTTPServerConnectionFactory MulticastSocket SocketStream \
|
|
|
|
HTTPClientSession HTTPServerParams MultipartReader StreamSocket SocketImpl \
|
|
|
|
HTTPFixedLengthStream HTTPServerRequest HTTPServerRequestImpl MultipartWriter StreamSocketImpl \
|
|
|
|
HTTPHeaderStream HTTPServerResponse HTTPServerResponseImpl NameValueCollection TCPServer \
|
|
|
|
HTTPMessage HTTPServerSession NetException TCPServerConnection HTTPBufferAllocator \
|
|
|
|
HTTPAuthenticationParams HTTPCredentials HTTPDigestCredentials \
|
|
|
|
HTTPRequest HTTPSession HTTPSessionInstantiator HTTPSessionFactory NetworkInterface \
|
|
|
|
HTTPRequestHandler HTTPStream HTTPIOStream ServerSocket TCPServerDispatcher TCPServerConnectionFactory \
|
|
|
|
HTTPRequestHandlerFactory HTTPStreamFactory ServerSocketImpl TCPServerParams \
|
|
|
|
QuotedPrintableEncoder QuotedPrintableDecoder StringPartSource \
|
2013-03-17 18:41:15 +01:00
|
|
|
FTPClientSession FTPStreamFactory PartHandler PartSource PartStore NullPartHandler \
|
2012-04-29 20:52:25 +02:00
|
|
|
SocketReactor SocketNotifier SocketNotification AbstractHTTPRequestHandler \
|
|
|
|
MailRecipient MailMessage MailStream SMTPClientSession POP3ClientSession \
|
2012-11-11 22:04:31 +01:00
|
|
|
RawSocket RawSocketImpl ICMPClient ICMPEventArgs ICMPPacket ICMPPacketImpl \
|
2012-04-29 20:52:25 +02:00
|
|
|
ICMPSocket ICMPSocketImpl ICMPv4PacketImpl \
|
2014-01-13 18:04:27 +01:00
|
|
|
NTPClient NTPEventArgs NTPPacket \
|
2012-10-14 23:20:38 +02:00
|
|
|
RemoteSyslogChannel RemoteSyslogListener SMTPChannel \
|
2014-11-10 22:15:02 +01:00
|
|
|
WebSocket WebSocketImpl \
|
2017-11-01 11:19:52 +01:00
|
|
|
OAuth10Credentials OAuth20Credentials \
|
2019-03-18 16:58:57 +01:00
|
|
|
PollSet UDPClient UDPServerParams \
|
2019-11-20 14:22:41 +01:00
|
|
|
NTLMCredentials SSPINTLMCredentials HTTPNTLMCredentials \
|
|
|
|
EscapeHTMLStream
|
2012-04-29 20:52:25 +02:00
|
|
|
|
|
|
|
target = PocoNet
|
|
|
|
target_version = $(LIBVERSION)
|
|
|
|
target_libs = PocoFoundation
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|