2015-01-04 22:51:01 +08:00
|
|
|
#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
|
2013-12-07 20:31:59 +08:00
|
|
|
#Path for SunOS
|
|
|
|
ifeq ($(findstring SunOS, $(UNIXNAME)), SunOS)
|
|
|
|
LDFLAGS += -lz -liconv
|
|
|
|
else
|
|
|
|
LDFLAGS += -lz
|
|
|
|
endif
|
2014-08-01 00:51:32 +08:00
|
|
|
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../
|
2013-08-18 17:42:25 +08:00
|
|
|
PROG = memcache_pool
|