mirror of
https://github.com/openbsd/src.git
synced 2025-01-10 06:47:55 -08:00
272d89adac
Remove -Werror to give code a greater chance of building. ok deraadt@ florian@
13 lines
206 B
Makefile
13 lines
206 B
Makefile
# $OpenBSD: Makefile,v 1.5 2017/04/16 10:16:35 jsg Exp $
|
|
|
|
PROG= tftp-proxy
|
|
SRCS= tftp-proxy.c filter.c
|
|
MAN= tftp-proxy.8
|
|
LDADD= -levent
|
|
DPADD= ${LIBEVENT}
|
|
|
|
CFLAGS+=-Wall
|
|
CDIAGFLAGS=
|
|
|
|
.include <bsd.prog.mk>
|