blob: a9e28a278fc62f3ea9a08703ed06e1717430cd27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: Makefile,v 1.34 2020/09/14 11:30:25 martijn Exp $
PROG= relayd
SRCS= parse.y
SRCS+= agentx.c agentx_control.c ca.c carp.c check_icmp.c \
check_script.c check_tcp.c check_tls.c config.c control.c \
hce.c log.c name2id.c pfe.c pfe_filter.c pfe_route.c proc.c \
relay.c relay_http.c relay_udp.c relayd.c \
shuffle.c ssl.c subagentx.c subagentx_log.c util.c
MAN= relayd.8 relayd.conf.5
LDADD= -levent -ltls -lssl -lcrypto -lutil
DPADD= ${LIBEVENT} ${LIBSSL} ${LIBCRYPTO} ${LIBUTIL}
CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith
CFLAGS+= -Wsign-compare -Wcast-qual
YFLAGS=
.include <bsd.prog.mk>
|