01d8340f19
-- http_ping is like the regular ping command, except that it sends HTTP requests instead of ICMP echo requests.
14 lines
225 B
Makefile
14 lines
225 B
Makefile
# $OpenBSD: Makefile.bsd,v 1.1.1.1 2001/08/06 00:33:25 brad Exp $
|
|
|
|
PROG = http_ping
|
|
SRCS = http_ping.c
|
|
|
|
CPPFLAGS+= -DUSE_SSL
|
|
LDADD += -lssl -lcrypto
|
|
|
|
BINDIR = ${PREFIX}/bin
|
|
MANDIR = ${PREFIX}/man/cat
|
|
|
|
.include <bsd.prog.mk>
|
|
|