Deleted Added
sdiff udiff text old ( 180012 ) new ( 181136 )
full compact
1#
2# $FreeBSD: head/Makefile.inc1 181136 2008-08-01 21:52:41Z jhb $
3#
4# Make command line options:
5# -DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
6# -DNO_CLEAN do not clean at all
7# -DNO_SHARE do not go into share subdir
8# -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
9# -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
10# -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel

--- 466 unchanged lines hidden (view full) ---

477 cd ${.CURDIR}/${_dir}; \
478 MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} -DWITHOUT_SSP DESTDIR= build-tools
479.endfor
480 cd ${.CURDIR}; \
481 ${LIB32WMAKE} -f Makefile.inc1 libraries
482.for _t in obj depend all
483 cd ${.CURDIR}/libexec/rtld-elf; \
484 PROG=ld-elf32.so.1 ${LIB32WMAKE} ${_t}
485 cd ${.CURDIR}/usr.bin/ldd; \
486 PROG=ldd32 ${LIB32WMAKE} ${_t}
487.endfor
488
489distribute32 install32:
490.if make(distribute32)
491 mkdir -p ${DISTDIR}/${DISTRIBUTION}/usr/lib32 # XXX add to mtree
492 mkdir -p ${DISTDIR}/${DISTRIBUTION}/usr/lib32/dtrace # XXX add to mtree
493.else
494 mkdir -p ${DESTDIR}/usr/lib32 # XXX add to mtree
495 mkdir -p ${DESTDIR}/usr/lib32/dtrace # XXX add to mtree
496.endif
497 cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
498.if ${MK_CDDL} != "no"
499 cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
500.endif
501 cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
502.if ${MK_CRYPT} != "no"
503 cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
504.endif
505 cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//}
506 cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//}
507.endif
508
509
510WMAKE_TGTS=
511.if !defined(SUBDIR_OVERRIDE)
512WMAKE_TGTS+= _worldtmp _legacy _bootstrap-tools
513.endif
514WMAKE_TGTS+= _cleanobj _obj _build-tools

--- 797 unchanged lines hidden ---