diff options
author | peter <peter@FreeBSD.org> | 1998-06-12 16:18:27 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-06-12 16:18:27 +0000 |
commit | bd88b2c525ccb85c6c79f9f2037a73861f161006 (patch) | |
tree | 4a60990e6a71120a1abce5e72af101c00d42cc4c /usr.bin | |
parent | d24603db7b7e04d7c217fc78b4683ed282942b9c (diff) | |
download | FreeBSD-src-bd88b2c525ccb85c6c79f9f2037a73861f161006.zip FreeBSD-src-bd88b2c525ccb85c6c79f9f2037a73861f161006.tar.gz |
The doscmd build process and doscmd.kernel loader is very a.out specific
and doesn't fly too well on in an elf enviroment yet.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 975a804..c6e530f 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.3 (Berkeley) 1/7/94 -# $Id: Makefile,v 1.101 1998/05/31 10:48:06 jb Exp $ +# $Id: Makefile,v 1.102 1998/06/01 14:30:58 peter Exp $ # XXX MISSING: deroff diction graph learn plot # spell spline struct xsend @@ -35,9 +35,12 @@ SUBDIR+=telnet .if ${MACHINE_ARCH} == "i386" # Things that don't compile on alpha or are aout specific: -SUBDIR+=ar brandelf dig dnsquery doscmd fstat gcore gprof gprof4 host ipcrm \ +SUBDIR+=ar brandelf dig dnsquery fstat gcore gprof gprof4 host ipcrm \ ipcs kdump ktrace ldd lorder modstat mt netstat nfsstat nm objformat \ ranlib sasc size strings strip systat top truss vmstat w +.if ${BINFORMAT} == aout +SUBDIR+=doscmd +.endif .endif .if !defined(NOTCL) && exists (${.CURDIR}/../contrib/tcl) && \ |