1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/www/httpsqs/files/Makefile
Baptiste Daroussin 2ecfdbfa14 HTTPSQS is a Simple Queue Service based on HTTP GET/POST protocol. It can
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>
2011-04-27 11:23:33 +00:00

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