503541afd5
-- http_load runs multiple HTTP fetches in parallel, to test the throughput of a web server. However unlike most such test clients, it runs in a single process, so it doesn't bog down the client machine. It can be configured to do HTTPS fetches as well.
14 lines
234 B
Makefile
14 lines
234 B
Makefile
# $OpenBSD: Makefile.bsd,v 1.1.1.1 2001/08/06 00:35:05 brad Exp $
|
|
|
|
PROG = http_load
|
|
SRCS = http_load.c timers.c
|
|
|
|
CPPFLAGS+= -DUSE_SSL
|
|
LDADD += -lssl -lcrypto
|
|
|
|
BINDIR = ${PREFIX}/bin
|
|
MANDIR = ${PREFIX}/man/cat
|
|
|
|
.include <bsd.prog.mk>
|
|
|