diff options
author | KATO Takenori <kato@FreeBSD.org> | 2000-12-24 14:58:34 +0000 |
---|---|---|
committer | KATO Takenori <kato@FreeBSD.org> | 2000-12-24 14:58:34 +0000 |
commit | 3e530495b9181723a37e6659a4e63381b7384349 (patch) | |
tree | 301d85eb5481b76b2f12eed2538000f4321fabb5 /Makefile.inc1 | |
parent | dfec8c70fa9266dc3ee944afc588c5a68b2116e4 (diff) | |
download | src-3e530495b9181723a37e6659a4e63381b7384349.tar.gz src-3e530495b9181723a37e6659a4e63381b7384349.zip |
Notes
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 4f1a7409110d..6b5565fb0d6b 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -203,10 +203,6 @@ IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 USRDIRS= usr/bin usr/lib/compat/aout usr/games usr/libdata/ldscripts \ usr/libexec/${OBJFORMAT} usr/sbin usr/share/misc -.if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98" -USRDIRS+= usr/libexec/aout -.endif - INCDIRS= arpa g++/std objc protocols readline rpc rpcsvc openssl \ security ss @@ -590,17 +586,12 @@ _elf2exe= usr.sbin/elf2exe _btxld= usr.sbin/btxld .endif -# XXX - MACHINE should actually be TARGET. But we don't set that... -.if ${TARGET_ARCH} == "i386" && ${MACHINE} == "pc98" -_aout_tools= usr.bin/size usr.bin/strip gnu/usr.bin/as gnu/usr.bin/ld -.endif - .if !defined(NOPERL) _perl= gnu/usr.bin/perl/libperl gnu/usr.bin/perl/miniperl .endif cross-tools: -.for _tool in ${_aout_tools} ${_btxld} ${_elf2exe} ${_perl} usr.bin/genassym \ +.for _tool in ${_btxld} ${_elf2exe} ${_perl} usr.bin/genassym \ usr.bin/gensetdefs gnu/usr.bin/binutils usr.bin/objformat gnu/usr.bin/cc cd ${.CURDIR}/${_tool}; \ ${MAKE} obj; \ |