Home | History | Annotate | Line # | Download | only in dd
Makefile revision 1.15
      1 #	$NetBSD: Makefile,v 1.15 2011/02/04 19:42:12 pooka Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 5/31/93
      3 
      4 RUMPPRG=dd
      5 SRCS=	args.c conv.c dd.c misc.c position.c
      6 
      7 DPADD+=	${LIBUTIL}
      8 LDADD+=	-lutil
      9 
     10 .ifdef SMALLPROG
     11 CPPFLAGS+=	-DNO_CONV -DSMALL
     12 .else
     13 SRCS+=		conv_tab.c
     14 .ifndef CRUNCHEDPROG
     15 DPADD+= 	${LIBRUMPCLIENT}
     16 LDADD+= 	-lrumpclient
     17 .else
     18 CPPFLAGS+=	-DSMALL
     19 .endif
     20 .endif
     21 
     22 .include <bsd.prog.mk>
     23