mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 04:49:08 +08:00
10 lines
221 B
Makefile
10 lines
221 B
Makefile
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
|
|
PROG = mem_cache
|