summaryrefslogtreecommitdiff
path: root/usr.sbin/fdformat/Makefile
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2005-03-09 18:41:51 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2005-03-09 18:41:51 +0000
commit4eaca50d846d95e18b1f4b8bfac26b5043bd3eaf (patch)
tree4ae984f5c65bb10ccafd67d33474d3c954766c71 /usr.sbin/fdformat/Makefile
parent1da8f26758611ca48a0d63bbc6ac0af99badda46 (diff)
Preliminary support for the floppy drive on Ultrasparcs. Only tested on
SBus machines so far, although EBus attachment glue is provided but not enabled by default. Also, fdformat(8) does not work correctly yet, although reading and writing is safe; this will hopefully be fixed in the near future. ok deraadt@
Diffstat (limited to 'usr.sbin/fdformat/Makefile')
-rw-r--r--usr.sbin/fdformat/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/fdformat/Makefile b/usr.sbin/fdformat/Makefile
index a514020e167..7d074d91680 100644
--- a/usr.sbin/fdformat/Makefile
+++ b/usr.sbin/fdformat/Makefile
@@ -1,6 +1,6 @@
-# $OpenBSD: Makefile,v 1.3 2000/05/18 16:46:37 espie Exp $
+# $OpenBSD: Makefile,v 1.4 2005/03/09 18:41:50 miod Exp $
-.if ${MACHINE} == "i386" || ${MACHINE} == "sparc"
+.if ${MACHINE} == "i386" || ${MACHINE} == "sparc" || ${MACHINE} == "sparc64"
PROG= fdformat
DPADD= ${LIBUTIL}
LDADD= -lutil
@@ -10,6 +10,6 @@ NOPROG=yes
MAN=fdformat.1
-MANSUBDIR=i386 sparc
+MANSUBDIR=i386 sparc sparc64
.include <bsd.prog.mk>