acl/lib_acl_cpp/samples/ssl/https_server/Makefile
2022-08-20 21:32:08 +08:00

16 lines
413 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 = https_server
#EXTLIBS += -lpolarssl -lz
EXTLIBS += -L/usr/local/lib -lssl -lcrypto -lz -ldl