diff options
author | peter <peter@FreeBSD.org> | 2001-11-03 07:30:14 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-11-03 07:30:14 +0000 |
commit | 4ca131b9a6d6f29aaa503fb035a27d66620d4c3a (patch) | |
tree | b16b96b1e88530f5ce6851150e49a5d6d8088921 /sbin/Makefile | |
parent | 61939947189c6803340b706cd2f7ed8b60cc6f6b (diff) | |
download | FreeBSD-src-4ca131b9a6d6f29aaa503fb035a27d66620d4c3a.zip FreeBSD-src-4ca131b9a6d6f29aaa503fb035a27d66620d4c3a.tar.gz |
Move i386/{fdisk,cxconfig,nextboot} to src/sbin. Eliminate the i386
subdir. Add fdisk to ia64 SUBDIR list. Add all the previous occupants
of the i386 subdir to the i386 SUBDIR list.
Diffstat (limited to 'sbin/Makefile')
-rw-r--r-- | sbin/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index d33d80c..3b1b729 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -82,12 +82,16 @@ SUBDIR= adjkerntz \ umount \ vinum -.if ${MACHINE_ARCH} == i386 -SUBDIR+= kget mount_nwfs +.if ${MACHINE_ARCH} == "i386" +SUBDIR+=cxconfig \ + fdisk \ + kget \ + mount_nwfs \ + nextboot .endif -.if exists(${.CURDIR}/${MACHINE}) -SUBDIR+= ${MACHINE} +.if ${MACHINE_ARCH} == "ia64" +SUBDIR+=fdisk .endif .include <bsd.subdir.mk> |