diff options
author | jb <jb@FreeBSD.org> | 1998-05-18 04:46:29 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-05-18 04:46:29 +0000 |
commit | a7f60424566638dde8ade381b3bb6a8f9c027f34 (patch) | |
tree | 75a39c0f8df54c8d629af3ec2d0d2b71415e7192 | |
parent | 070d8ad1d4c98e78b173f5302867cbde38eb81d1 (diff) | |
download | FreeBSD-src-a7f60424566638dde8ade381b3bb6a8f9c027f34.zip FreeBSD-src-a7f60424566638dde8ade381b3bb6a8f9c027f34.tar.gz |
Make this safe for an alpha build, leaving out just about everything
that has some sort of kernel issue associated with it.
-rw-r--r-- | sbin/Makefile | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index 57e7a96..594bd83 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -1,26 +1,22 @@ # @(#)Makefile 8.5 (Berkeley) 3/31/94 +# $Id$ # XXX MISSING: icheck ncheck -SUBDIR= disklabel dmesg dset dump dumpfs \ - dumpon fsck fsdb fsirand ifconfig init ipfw \ - md5 mknod \ - mount mount_cd9660 mount_ext2fs \ - mount_nfs mount_null mount_portal mount_std \ - mount_umap mount_union mountd newfs nfsd nfsiod \ - nos-tun nologin quotacheck reboot restore route routed \ - scsiformat shutdown slattach startslip spppcontrol tunefs \ - umount +SUBDIR= init md5 mknod nologin ping reboot route routed scsiformat shutdown -SUBDIR+=ipf +.if ${MACHINE_ARCH} == "i386" +SUBDIR+=adjkerntz badsect ccdconfig clri disklabel dmesg dset dump dumpfs \ + dumpon fsck fsdb fsirand ifconfig ipf ipfw kldload kldstat \ + kldunload modload modunload mount mount_cd9660 mount_ext2fs \ + mount_nfs mount_null mount_portal mount_std mount_umap \ + mount_union mountd newfs nfsd nfsiod nos-tun quotacheck \ + restore savecore scsi slattach startslip spppcontrol swapon \ + tunefs umount +.endif .if exists(${.CURDIR}/${MACHINE}) SUBDIR+= ${MACHINE} .endif -.if ${MACHINE_ARCH} == "i386" -SUBDIR+=adjkerntz badsect ccdconfig clri kldload kldstat kldunload ping -SUBDIR+=modload modunload savecore scsi swapon -.endif - .include <bsd.subdir.mk> |