Makefile revision 1.12
1#	$NetBSD: Makefile,v 1.12 2019/02/04 03:58:41 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