Home | History | Annotate | Line # | Download | only in dd
Makefile revision 1.11
      1 #	$NetBSD: Makefile,v 1.11 2005/06/26 19:10:49 christos 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 .include <bsd.prog.mk>
     14