diff options
| author | Gary Palmer <gpalmer@FreeBSD.org> | 1994-10-02 03:38:08 +0000 |
|---|---|---|
| committer | Gary Palmer <gpalmer@FreeBSD.org> | 1994-10-02 03:38:08 +0000 |
| commit | 3e1d4f3258e5bba2f0247eae32bbb8f04caad987 (patch) | |
| tree | 095d341877058e7afff84e63b681663097128d95 | |
| parent | 006e8b41fbfc67c77ce47ba36671a4d20a53a55e (diff) | |
Moce comcontrol, fdisk & mount_msdos out of machine-independance into
an I386 specific statement. Also add necessary code to allow
machine-dependance in this makefile
Reviewed by: rgrimes
Notes
svn path=/head/; revision=3289
| -rw-r--r-- | sbin/Makefile | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index 726cbdbc6aa2..e175684da44e 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -2,11 +2,17 @@ # XXX MISSING: fsdb icheck ncheck # XXX NEEDS CONVERSION: scsiformat -SUBDIR= adjkerntz badsect clri comcontrol disklabel dmesg dump dumpfs dumplfs \ - fdisk fsck ifconfig init mknod modload modunload mount mount_cd9660 \ - mount_fdesc mount_kernfs mount_lfs mount_nfs mount_null mount_msdos \ - mount_portal mount_procfs mount_umap mount_union mountd newfs newlfs \ - nfsd nfsiod nologin ping quotacheck reboot restore route savecore \ - shutdown slattach startslip swapon tunefs umount +SUBDIR= adjkerntz badsect clri disklabel dmesg dump dumpfs dumplfs \ + fsck ifconfig init mknod modload modunload mount mount_cd9660 \ + mount_fdesc mount_kernfs mount_lfs mount_nfs mount_null mount_portal \ + mount_procfs mount_umap mount_union mountd newfs newlfs nfsd nfsiod \ + nologin ping quotacheck reboot restore route savecore shutdown \ + slattach startslip swapon tunefs umount + +.if make(clean) || make(cleandir) +SUBDIR+=comcontrol fdisk mount_msdos +.elif ${MACHINE} == "i386" +SUBDIR+=comcontrol fdisk mount_msdos +.endif .include <bsd.subdir.mk> |
