acl/lib_acl_cpp/samples/ssl/https_client/Makefile

18 lines
391 B
Makefile
Raw Normal View History

2014-12-07 23:48:11 +08:00
PROG = https_client
util_path = ../..
base_path = ../../..
include ../../Makefile.in
2019-12-20 15:08:36 +08:00
#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
2014-12-07 23:48:11 +08:00
CFLAGS += -I../..
EXTLIBS += -lz -ldl