mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
2ecfdbfa14
handle more than 10000 requests/sec concurrent connections. Currently it's widely deployed throughout the xoyo.com under the Kingsoft Corporation. WWW: https://code.google.com/p/httpsqs/ PR: ports/156595 Submitted by: Zhihao Yuan <lichray at gmail.com>
19 lines
491 B
Makefile
19 lines
491 B
Makefile
# $FreeBSD$
|
|
# Makefile for httpsqs (pmake)
|
|
|
|
tokyocabinet_CFLAGS!= pkg-config --cflags tokyocabinet
|
|
libevent_CFLAGS!= pkg-config --cflags libevent
|
|
tokyocabinet_LIBS!= pkg-config --libs tokyocabinet
|
|
libevent_LIBS!= pkg-config --libs libevent
|
|
CFLAGS+= ${tokyocabinet_CFLAGS} ${libevent_CFLAGS}
|
|
LIBS+= ${tokyocabinet_LIBS} ${libevent_LIBS}
|
|
|
|
all: httpsqs
|
|
|
|
httpsqs: httpsqs.o prename.o
|
|
${CC} ${LDFLAGS} ${LIBS} -o ${.TARGET} ${.ALLSRC}
|
|
httpsqs.o: httpsqs.c
|
|
prename.o: prename.c
|
|
|
|
install: httpsqs
|