summaryrefslogtreecommitdiff
path: root/distrib/special/dd
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2005-08-02 11:16:45 +0000
committerMarc Espie <espie@cvs.openbsd.org>2005-08-02 11:16:45 +0000
commit74f76b84b1df9b62548a298f6efe1080c4e8b8b6 (patch)
tree5c054dd90b73eb4d594b3550afc9bcd9fda10f90 /distrib/special/dd
parentb349f21820bdff22160c34fd6dc2a37bf5f6ed25 (diff)
replace dd with NO_CONV version.
okay deraadt@
Diffstat (limited to 'distrib/special/dd')
-rw-r--r--distrib/special/dd/Makefile14
1 files changed, 14 insertions, 0 deletions
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>