mirror of
https://github.com/openbsd/src.git
synced 2024-12-22 07:27:59 -08:00
1ae60b2abe
OK tb@ Enthousiasm from Mischa Peters
21 lines
699 B
Makefile
21 lines
699 B
Makefile
# $OpenBSD: Makefile,v 1.35 2020/10/26 16:52:06 martijn Exp $
|
|
|
|
PROG= relayd
|
|
SRCS= parse.y
|
|
SRCS+= 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 util.c
|
|
MAN= relayd.8 relayd.conf.5
|
|
|
|
LDADD= -lagentx -levent -ltls -lssl -lcrypto -lutil
|
|
DPADD= ${LIBAGENTX} ${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>
|