Makefile revision 1.13
1#	$NetBSD: Makefile,v 1.13 2010/11/22 21:04:27 pooka Exp $
2#	@(#)Makefile	8.1 (Berkeley) 5/31/93
3
4PROG=	dd
5SRCS=	args.c conv.c dd.c misc.c position.c
6
7DPADD+=	${LIBUTIL}
8LDADD+=	-lutil
9
10.ifdef SMALLPROG
11CPPFLAGS+=	-DNO_CONV -DSMALL
12.else
13SRCS+=		conv_tab.c
14DPADD+= 	${LIBRUMPCLIENT}
15LDADD+= 	-lrumpclient
16.endif
17
18.include <bsd.prog.mk>
19