diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /distrib/utils/x_dd |
initial import of NetBSD tree
Diffstat (limited to 'distrib/utils/x_dd')
-rw-r--r-- | distrib/utils/x_dd/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/distrib/utils/x_dd/Makefile b/distrib/utils/x_dd/Makefile new file mode 100644 index 00000000000..208facc52ad --- /dev/null +++ b/distrib/utils/x_dd/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.3 1995/10/13 18:35:26 gwr Exp $ +# Build a smaller dd (i.e. for boot media) + +PROG= dd +NOMAN= + +SRCDIR= ${BSDSRCDIR}/bin/dd + +SRCS= args.c conv.c dd.c misc.c position.c +# SRCS+= conv_tab.c (not used) + +CFLAGS+= -DNO_CONV -I${SRCDIR} + +all: ${PROG} + +.include <bsd.prog.mk> + +.PATH: ${SRCDIR} |