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