summaryrefslogtreecommitdiff
path: root/bin/dd/Makefile
blob: 0589a6f5ae49cd8975c5a1583796dda18f3bdc2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#	$NetBSD: Makefile,v 1.12 2007/10/05 07:23:09 lukem Exp $
#	@(#)Makefile	8.1 (Berkeley) 5/31/93

PROG=	dd
SRCS=	args.c conv.c dd.c misc.c position.c

DPADD+=	${LIBUTIL}
LDADD+=	-lutil

.ifdef SMALLPROG
CPPFLAGS+=	-DNO_CONV
.else
SRCS+=		conv_tab.c
.endif

.include <bsd.prog.mk>