acl/lib_acl_cpp/samples/ssl/ssl_server/Makefile
shuxin   zheng be1ff25ee1 test mbedtls
2019-12-20 15:08:36 +08:00

16 lines
353 B
Makefile

base_path = ../../..
include ../../Makefile.in
#Path for SunOS
ifeq ($(findstring SunOS, $(UNIXNAME)), SunOS)
EXTLIBS = -liconv
endif
ifeq ($(findstring FreeBSD, $(UNIXNAME)), FreeBSD)
EXTLIBS = -L/usr/local/lib -liconv
endif
ifeq ($(findstring Darwin, $(UNIXNAME)), Darwin)
EXTLIBS += -L/usr/lib -liconv
endif
PROG = ssl_server
EXTLIBS += -ldl -lz