Home | History | Annotate | Line # | Download | only in rdist
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 
      4 USE_FORT?= yes	# network client/server
      5 
      6 CPPFLAGS+= -I${.CURDIR}
      7 PROG=	rdist
      8 SRCS=	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"
     13 COPTS.server.c += -Wno-error=format-truncation
     14 .endif
     15 
     16 .include <bsd.prog.mk>
     17