acl/lib_acl_cpp/samples/memcache_pool/Makefile

19 lines
425 B
Makefile
Raw Normal View History

#UTIL = $(wildcard ../*.cpp)
2013-10-20 18:12:47 +08:00
#LDFLAGS += -lz -liconv
2015-01-05 17:25:09 +08:00
base_path = ../..
include ../Makefile.in
#Path for SunOS
ifeq ($(findstring SunOS, $(UNIXNAME)), SunOS)
LDFLAGS += -lz -liconv
else
LDFLAGS += -lz
endif
ifeq ($(findstring FreeBSD, $(UNIXNAME)), FreeBSD)
EXTLIBS += -L/usr/local/lib -liconv
endif
2015-01-05 17:25:09 +08:00
ifeq ($(findstring Darwin, $(UNIXNAME)), Darwin)
EXTLIBS += -L/usr/lib -liconv
endif
2013-10-20 18:12:47 +08:00
CFLAGS += -I../
PROG = memcache_pool