poco/NetSSL_OpenSSL/samples/download/Makefile

25 lines
487 B
Makefile
Raw Normal View History

2012-04-29 20:52:25 +02:00
#
# Makefile
#
# $Id: //poco/Main/template/sample.make#4 $
#
# Makefile for Poco download
#
include $(POCO_BASE)/build/rules/global
# Note: linking order is important, do not change it.
2012-10-01 02:31:28 +02:00
ifeq ($(POCO_CONFIG),FreeBSD)
SYSLIBS += -lssl -lcrypto -lz
else
SYSLIBS += -lssl -lcrypto -lz -ldl
2012-10-01 02:31:28 +02:00
endif
2012-04-29 20:52:25 +02:00
objects = download
target = download
target_version = 1
target_libs = PocoNetSSL PocoCrypto PocoNet PocoUtil PocoJSON PocoXML PocoFoundation
2012-04-29 20:52:25 +02:00
include $(POCO_BASE)/build/rules/exec