acl/lib_acl_cpp/samples/websocket/demo/Makefile
2016-10-20 09:08:27 +08:00

15 lines
346 B
Makefile

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