mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-01 03:17:37 +08:00
16 lines
360 B
Makefile
16 lines
360 B
Makefile
include ../Makefile.in
|
|
#EXTLIBS = -lz -liconv
|
|
#Path for SunOS
|
|
ifeq ($(findstring SunOS, $(UNIXNAME)), SunOS)
|
|
EXTLIBS += -lz -liconv
|
|
else
|
|
EXTLIBS += -lz
|
|
endif
|
|
ifeq ($(findstring FreeBSD, $(UNIXNAME)), FreeBSD)
|
|
EXTLIBS += -L/usr/local/lib -liconv
|
|
endif
|
|
ifeq ($(findstring Darwin, $(UNIXNAME)), Darwin)
|
|
EXTLIBS += -L/usr/lib -liconv
|
|
endif
|
|
PROG = rpc_download
|