Home | History | Annotate | Line # | Download | only in dd
Makefile revision 1.10
      1 #	$NetBSD: Makefile,v 1.10 2002/11/29 13:11:10 lukem Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 5/31/93
      3 
      4 PROG=	dd
      5 SRCS=	args.c conv.c dd.c misc.c position.c
      6 
      7 .ifdef SMALLPROG
      8 CPPFLAGS+=	-DNO_CONV
      9 .else
     10 SRCS+=		conv_tab.c
     11 .endif
     12 
     13 WARNS=2
     14 
     15 .include <bsd.prog.mk>
     16