mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 17:30:53 +08:00
4a219509b9
some new features, and some bug fixed
12 lines
226 B
Makefile
12 lines
226 B
Makefile
UTIL = $(wildcard ../*.cpp)
|
|
include ../Makefile.in
|
|
#LDFLAGS += -lz -liconv
|
|
#Path for SunOS
|
|
ifeq ($(findstring SunOS, $(UNIXNAME)), SunOS)
|
|
LDFLAGS += -lz -liconv
|
|
else
|
|
LDFLAGS += -lz
|
|
endif
|
|
CFLAGS += -I../
|
|
PROG = memcache_pool
|