diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-11-06 20:03:09 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-11-06 20:03:09 +0000 |
commit | b8a748de4b6beb04b39e8bc0846e140ae7de48ff (patch) | |
tree | a9ff347e7f4f0047da06a61608299ef2460d116b /sbin | |
parent | 1f6358aebef4e4b2cf9403210a9326c8f2704104 (diff) |
update -DSEEALSO for alpha and cats, remove arc and amiga. ok miod@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/disklabel/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sbin/disklabel/Makefile b/sbin/disklabel/Makefile index e21d059622c..c81e68e1934 100644 --- a/sbin/disklabel/Makefile +++ b/sbin/disklabel/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.34 2004/11/06 18:57:59 otto Exp $ +# $OpenBSD: Makefile,v 1.35 2004/11/06 20:03:08 otto Exp $ PROG= disklabel SRCS= disklabel.c dkcksum.c editor.c manual.c @@ -23,8 +23,12 @@ manual.c: disklabel.cat8 echo '};'; echo 'const int manpage_sz = sizeof(manpage);') > manual.c .endif -.if (${MACHINE} == "amiga") -CFLAGS+= -D${MACHINE} +.if (${MACHINE} == "alpha") +CFLAGS+= -DSEEALSO="\"fdisk(8), installboot(8)\"" +.endif + +.if (${MACHINE} == "cats") +CFLAGS+= -DSEEALSO="\"fdisk(8)\"" .endif .if (${MACHINE} == "i386") || (${MACHINE} == "amd64") @@ -32,10 +36,6 @@ CFLAGS+= -DNUMBOOT=2 -DDOSLABEL CFLAGS+= -DSEEALSO="\"fdisk(8), installboot(8)\"" .endif -.if (${MACHINE} == "arc") -CFLAGS+= -DDOSLABEL -DNUMBOOT=1 -CFLAGS+= -DSEEALSO="\"fdisk(8)\"" -.endif .if (${MACHINE} == "hp300") || (${MACHINE} == "vax") || (${MACHINE} == "hppa") CFLAGS+= -DNUMBOOT=1 |