acl/lib_acl_cpp/samples/http/http_request/Makefile

15 lines
349 B
Makefile
Raw Normal View History

PROG = http_request
2015-08-22 18:05:46 +08:00
base_path = ../../..
include ../../Makefile.in
2015-08-22 18:05:46 +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
EXTLIBS += -lz