1 # $NetBSD: Makefile,v 1.13 2010/11/22 21:04:27 pooka Exp $ 2 # @(#)Makefile 8.1 (Berkeley) 5/31/93 3 4 PROG= 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 DPADD+= ${LIBRUMPCLIENT} 15 LDADD+= -lrumpclient 16 .endif 17 18 .include <bsd.prog.mk> 19