diff options
author | jkh <jkh@FreeBSD.org> | 1998-11-28 13:14:58 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-11-28 13:14:58 +0000 |
commit | db70b202394164c029f74456ac007910e2be176d (patch) | |
tree | 1ff68aea87dcb073dcd3397ae133338dfb788f20 /Makefile.inc1 | |
parent | a93fa46928afe209d70d036bba3aa0869d84bfa7 (diff) | |
download | FreeBSD-src-db70b202394164c029f74456ac007910e2be176d.zip FreeBSD-src-db70b202394164c029f74456ac007910e2be176d.tar.gz |
Revert previous commit; write idea, wrong way.
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index daf8155..01da390 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1,5 +1,5 @@ # -# $Id: Makefile.inc1,v 1.44 1998/11/20 02:03:52 jdp Exp $ +# $Id: Makefile.inc1,v 1.45 1998/11/28 08:19:24 jkh Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -761,6 +761,9 @@ _linux= lkm/linux .if ${MACHINE_ARCH} == i386 _kldlinux= sys/modules/linux .endif +.if ${OBJFORMAT} == "aout" +_netboot= sys/${MACHINE}/boot/netboot +.endif BTMAKEFLAGS= ${MK_FLAGS} -D_BUILD_TOOLS @@ -857,7 +860,8 @@ build-tools: lib/libmytinfo \ ${_linux} \ ${_kldlinux} \ - ${_scrnmaps} + ${_scrnmaps} \ + ${_netboot} cd ${.CURDIR}/$d; ${MAKE} ${BTMAKEFLAGS} build-tools .endfor cd ${.CURDIR}/usr.bin/tn3270/tools; ${MAKE} ${BTMAKEFLAGS} all |