NetBSD/usr.bin/tr/Makefile

14 lines
281 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.6 2008/08/29 00:02:24 gmcgarry Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
1993-03-21 12:45:37 +03:00
PROG= tr
SRCS= str.c tr.c
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>
2006-05-12 05:26:05 +04:00
.if (defined(HAVE_GCC) && ${HAVE_GCC} == 4) || defined(HAVE_PCC)
2006-05-12 05:26:05 +04:00
.for f in str tr
COPTS.${f}.c+= -Wno-pointer-sign
.endfor
.endif