summaryrefslogtreecommitdiffstats
path: root/usr.sbin/relayd
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2017-07-03 22:21:47 +0000
committerespie <espie@openbsd.org>2017-07-03 22:21:47 +0000
commit186e29d5ec91e4d773cee4e8d674351727eba759 (patch)
tree98aed1d2cca7e71dc03a056e2f06ba6e0fec4417 /usr.sbin/relayd
parentsizeof(struct sockaddr_in) != sizeof(struct in_addr). (diff)
downloadwireguard-openbsd-186e29d5ec91e4d773cee4e8d674351727eba759.tar.xz
wireguard-openbsd-186e29d5ec91e4d773cee4e8d674351727eba759.zip
no need to generate y.tab.h if nothing uses it, set YFLAGS to nothing
instead of CLEANFILES += y.tab.h okay millert@
Diffstat (limited to 'usr.sbin/relayd')
-rw-r--r--usr.sbin/relayd/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/relayd/Makefile b/usr.sbin/relayd/Makefile
index ee84780d4f6..5f33e639509 100644
--- a/usr.sbin/relayd/Makefile
+++ b/usr.sbin/relayd/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.31 2017/05/27 08:33:25 claudio Exp $
+# $OpenBSD: Makefile,v 1.32 2017/07/03 22:21:47 espie Exp $
PROG= relayd
SRCS= parse.y
@@ -16,6 +16,6 @@ CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith
CFLAGS+= -Wsign-compare -Wcast-qual
-CLEANFILES+= y.tab.h
+YFLAGS=
.include <bsd.prog.mk>