diff options
author | jb <jb@FreeBSD.org> | 1998-03-13 19:41:06 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-03-13 19:41:06 +0000 |
commit | de6bdd1c61abd58f52ef8def2aa8a5504697eaaa (patch) | |
tree | c36bf8156d959f17dbc2fd8fee4f3cc7bb774c02 /bin/Makefile | |
parent | 47cf5137be77b27bdfd14c75cf8d5d493dcfe6e9 (diff) | |
download | FreeBSD-src-de6bdd1c61abd58f52ef8def2aa8a5504697eaaa.zip FreeBSD-src-de6bdd1c61abd58f52ef8def2aa8a5504697eaaa.tar.gz |
Some things only work on i386.
Diffstat (limited to 'bin/Makefile')
-rw-r--r-- | bin/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/bin/Makefile b/bin/Makefile index b9f90a0..8d30ac6 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -1,8 +1,12 @@ # From: @(#)Makefile 8.1 (Berkeley) 5/31/93 -# $Id: Makefile,v 1.8 1997/12/06 04:19:41 sef Exp $ +# $Id: Makefile,v 1.9 1997/12/07 02:26:12 peter Exp $ -SUBDIR= cat chio chmod cp csh date dd df domainname echo ed expr hostname \ - kill ln ls mkdir mv pax ps pwd rcp rm rmail rmdir sh sleep \ +SUBDIR= cat chio chmod cp date dd domainname echo ed expr hostname \ + kill ln ls mkdir mv pax pwd rcp rm rmail rmdir sleep \ stty sync test +.if ${MACHINE_ARCH} == "i386" +SUBDIR+=csh df ps sh +.endif + .include <bsd.subdir.mk> |