Makefile revision 1.13
1#	$NetBSD: Makefile,v 1.13 2019/09/29 23:45:01 mrg Exp $
2#	from: @(#)Makefile	8.3 (Berkeley) 7/19/93
3
4USE_FORT?= yes	# network client/server
5
6CPPFLAGS+= -I${.CURDIR}
7PROG=	rdist
8SRCS=	docmd.c expand.c gram.y lookup.c main.c server.c
9
10.include <bsd.own.mk>
11
12.if defined(HAVE_GCC) && ${HAVE_GCC} >= 7 && ${ACTIVE_CC} == "gcc"
13COPTS.server.c += -Wno-error=format-truncation
14.endif
15
16.include <bsd.prog.mk>
17