mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
15 lines
349 B
Makefile
15 lines
349 B
Makefile
|
PROG = http_request
|
||
|
base_path = ../../..
|
||
|
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
|
||
|
ifeq ($(findstring Darwin, $(UNIXNAME)), Darwin)
|
||
|
EXTLIBS += -L/usr/lib -liconv
|
||
|
endif
|
||
|
EXTLIBS += -lz
|