diff options
author | phk <phk@FreeBSD.org> | 2003-01-26 12:19:36 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-01-26 12:19:36 +0000 |
commit | 82826b71d12bdcca12994a000a0e8887d2e1c5a7 (patch) | |
tree | b96cc23dfd0c448783f0ff3172e0fee15bf8b194 /sbin/Makefile | |
parent | 6a029f7c046cd9b6b60693bbe2cb3bdda4f861ba (diff) | |
download | FreeBSD-src-82826b71d12bdcca12994a000a0e8887d2e1c5a7.zip FreeBSD-src-82826b71d12bdcca12994a000a0e8887d2e1c5a7.tar.gz |
Make disklabel(8) MD for i386/pc98 and alpha only.
Diffstat (limited to 'sbin/Makefile')
-rw-r--r-- | sbin/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index 4be12f6..9268144 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -15,7 +15,6 @@ SUBDIR= adjkerntz \ devd \ devfs \ dhclient \ - disklabel \ dmesg \ dump \ dumpfs \ @@ -91,6 +90,7 @@ SUBDIR+=ipf \ SUBDIR+=cxconfig \ mount_nwfs \ mount_smbfs +SUBDIR+=disklabel .if ${MACHINE} == "pc98" SUBDIR+=fdisk_pc98 .else @@ -104,4 +104,8 @@ SUBDIR+=fdisk \ mca .endif +.if ${MACHINE_ARCH} == "alpha" +SUBDIR+=disklabel +.endif + .include <bsd.subdir.mk> |