1 # $NetBSD: Makefile,v 1.6 2008/08/29 00:02:24 gmcgarry Exp $ 2 # @(#)Makefile 8.1 (Berkeley) 6/6/93 3 4 PROG= tr 5 SRCS= str.c tr.c 6 7 .include <bsd.prog.mk> 8 9 .if (defined(HAVE_GCC) && ${HAVE_GCC} == 4) || defined(HAVE_PCC) 10 .for f in str tr 11 COPTS.${f}.c+= -Wno-pointer-sign 12 .endfor 13 .endif 14