diff options
-rw-r--r-- | distrib/special/Makefile | 4 | ||||
-rw-r--r-- | distrib/special/dd/Makefile | 14 |
2 files changed, 16 insertions, 2 deletions
diff --git a/distrib/special/Makefile b/distrib/special/Makefile index ad86580f3e3..5c478ed81fc 100644 --- a/distrib/special/Makefile +++ b/distrib/special/Makefile @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile,v 1.12 2004/12/25 11:22:18 deraadt Exp $ +# $OpenBSD: Makefile,v 1.13 2005/08/02 11:16:44 espie Exp $ -SUBDIR= ftp pppd rsh dhclient init dmesg grep kbd less more \ +SUBDIR= dd ftp pppd rsh dhclient init dmesg grep kbd less more \ gzip ccdconfig ifconfig .include <bsd.subdir.mk> diff --git a/distrib/special/dd/Makefile b/distrib/special/dd/Makefile new file mode 100644 index 00000000000..07fc974dd8b --- /dev/null +++ b/distrib/special/dd/Makefile @@ -0,0 +1,14 @@ +# $OpenBSD: Makefile,v 1.1 2005/08/02 11:16:44 espie Exp $ + +COPTS+=-Os +# Define NO_CONV to disable character conversion +CFLAGS+=-DNO_CONV +LDFLAGS=-static + +PROG= dd +SRCS= args.c conv.c dd.c misc.c position.c +MAN= + +.PATH: ${.CURDIR}/../../../bin/dd + +.include <bsd.prog.mk> |