xref: /netbsd/bin/dd/Makefile (revision 6550d01e)
1#	$NetBSD: Makefile,v 1.15 2011/02/04 19:42:12 pooka Exp $
2#	@(#)Makefile	8.1 (Berkeley) 5/31/93
3
4RUMPPRG=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
14.ifndef CRUNCHEDPROG
15DPADD+= 	${LIBRUMPCLIENT}
16LDADD+= 	-lrumpclient
17.else
18CPPFLAGS+=	-DSMALL
19.endif
20.endif
21
22.include <bsd.prog.mk>
23