2014-12-07 23:48:11 +08:00
|
|
|
base_path = ../../..
|
|
|
|
include ../../Makefile.in
|
2013-10-20 18:12:47 +08:00
|
|
|
#EXTLIBS = -lz -liconv
|
2013-12-07 20:31:59 +08:00
|
|
|
#Path for SunOS
|
|
|
|
ifeq ($(findstring SunOS, $(UNIXNAME)), SunOS)
|
2015-11-20 23:29:10 +08:00
|
|
|
EXTLIBS += -lz -liconv
|
2013-12-07 20:31:59 +08:00
|
|
|
else
|
2015-11-20 23:29:10 +08:00
|
|
|
EXTLIBS += -lz
|
2013-12-07 20:31:59 +08:00
|
|
|
endif
|
2014-08-01 00:51:32 +08:00
|
|
|
ifeq ($(findstring FreeBSD, $(UNIXNAME)), FreeBSD)
|
|
|
|
EXTLIBS += -L/usr/local/lib -liconv
|
|
|
|
endif
|
2015-01-05 17:25:09 +08:00
|
|
|
ifeq ($(findstring Darwin, $(UNIXNAME)), Darwin)
|
|
|
|
EXTLIBS += -L/usr/lib -liconv
|
|
|
|
endif
|
2013-08-18 17:42:25 +08:00
|
|
|
PROG = master_http_threads
|