Makefile revision 1.7
1# @(#)Makefile 8.1 (Berkeley) 6/6/93 2# $NetBSD: Makefile,v 1.7 2009/04/14 22:15:19 lukem Exp $ 3 4WARNS?= 1 # fails -Wcast-qual -Wshadow (etc) 5 6PROG= error 7SRCS= main.c input.c pi.c subr.c filter.c touch.c 8 9DPADD+= ${LIBUTIL} 10LDADD+= -lutil 11 12.include <bsd.prog.mk> 13