acl/lib_acl_cpp/samples/websocket/demo/Makefile

15 lines
346 B
Makefile
Raw Normal View History

2016-09-20 19:55:38 +08:00
base_path = ../../..
PROG = websocket
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
EXTLIBS += -lz