xref: /netbsd-src/bin/dd/Makefile (revision 36a7970f3ca969e60c2740bc8a6eebfb895840c0)
1#	$NetBSD: Makefile,v 1.12 2007/10/05 07:23:09 lukem 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
12.else
13SRCS+=		conv_tab.c
14.endif
15
16.include <bsd.prog.mk>
17