Deleted Added
full compact
Makefile.inc1 (113099) Makefile.inc1 (113136)
1#
1#
2# $FreeBSD: head/Makefile.inc1 113099 2003-04-04 22:46:08Z imp $
2# $FreeBSD: head/Makefile.inc1 113136 2003-04-05 20:30:30Z imp $
3#
4# Make command line options:
5# -DMAKE_KERBEROS5 to build Kerberos5
6# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
7# -DNOCLEAN do not clean at all
8# -DNOCRYPT will prevent building of crypt versions
9# -DNOMAN do not build the manual pages
10# -DNOPROFILE do not build profiled libraries

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

182 MACHINE_ARCH=${TARGET_ARCH} \
183 MACHINE=${TARGET} \
184 CPUTYPE=${TARGET_CPUTYPE} \
185 GROFF_BIN_PATH=${WORLDTMP}/usr/bin \
186 GROFF_FONT_PATH=${WORLDTMP}/usr/share/groff_font \
187 GROFF_TMAC_PATH=${WORLDTMP}/usr/share/tmac
188
189# bootstrap-tool stage
3#
4# Make command line options:
5# -DMAKE_KERBEROS5 to build Kerberos5
6# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
7# -DNOCLEAN do not clean at all
8# -DNOCRYPT will prevent building of crypt versions
9# -DNOMAN do not build the manual pages
10# -DNOPROFILE do not build profiled libraries

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

182 MACHINE_ARCH=${TARGET_ARCH} \
183 MACHINE=${TARGET} \
184 CPUTYPE=${TARGET_CPUTYPE} \
185 GROFF_BIN_PATH=${WORLDTMP}/usr/bin \
186 GROFF_FONT_PATH=${WORLDTMP}/usr/share/groff_font \
187 GROFF_TMAC_PATH=${WORLDTMP}/usr/share/tmac
188
189# bootstrap-tool stage
190BMAKEENV= MAKEOBJDIRPREFIX=${WORLDTMP} \
191 DESTDIR= \
192 INSTALL="sh ${.CURDIR}/tools/install.sh"
193BMAKE= ${BMAKEENV} ${MAKE} -f Makefile.inc1 \
190BMAKEENV= DESTDIR= \
191 INSTALL="sh ${.CURDIR}/tools/install.sh" \
192 __MAKE_CONF=${.CURDIR}/tools/build/Makefile.boot \
193 OLD_MAKE_CONF=${__MAKE_CONF} \
194 WORLDTMP=${WORLDTMP}
195BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \
196 ${BMAKEENV} ${MAKE} -f Makefile.inc1 \
194 BOOTSTRAPPING=${OSRELDATE} \
195 -DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
196 -DNO_CPU_CFLAGS -DNO_WARNS
197
198# build-tool stage
197 BOOTSTRAPPING=${OSRELDATE} \
198 -DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
199 -DNO_CPU_CFLAGS -DNO_WARNS
200
201# build-tool stage
199TMAKEENV= MAKEOBJDIRPREFIX=${OBJTREE} \
200 DESTDIR= \
201 INSTALL="sh ${.CURDIR}/tools/install.sh"
202TMAKE= ${TMAKEENV} ${MAKE} -f Makefile.inc1 \
202TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \
203 ${BMAKEENV} ${MAKE} -f Makefile.inc1 \
203 BOOTSTRAPPING=${OSRELDATE} -DNO_CPU_CFLAGS -DNO_WARNS
204
205# cross-tool stage
206XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} -DNO_FORTRAN -DNO_GDB
207
208# world stage
209WMAKEENV= ${CROSSENV} \
210 DESTDIR=${WORLDTMP} \

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

605#
606# bootstrap-tools: Build tools needed for compatibility
607#
608.if exists(${.CURDIR}/games) && !defined(NOGAMES)
609_strfile= games/fortune/strfile
610.endif
611
612bootstrap-tools:
204 BOOTSTRAPPING=${OSRELDATE} -DNO_CPU_CFLAGS -DNO_WARNS
205
206# cross-tool stage
207XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} -DNO_FORTRAN -DNO_GDB
208
209# world stage
210WMAKEENV= ${CROSSENV} \
211 DESTDIR=${WORLDTMP} \

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

606#
607# bootstrap-tools: Build tools needed for compatibility
608#
609.if exists(${.CURDIR}/games) && !defined(NOGAMES)
610_strfile= games/fortune/strfile
611.endif
612
613bootstrap-tools:
613.for _tool in ${_strfile} usr.bin/yacc usr.bin/colldef \
614.for _tool in tools/build ${_strfile} usr.bin/yacc usr.bin/colldef \
614 usr.bin/makewhatis usr.bin/rpcgen usr.bin/uudecode \
615 usr.bin/xargs usr.bin/xinstall \
616 usr.sbin/config usr.sbin/kbdcontrol \
617 gnu/usr.bin/gperf gnu/usr.bin/groff gnu/usr.bin/texinfo
618 @${ECHODIR} "===> ${_tool}"; \
619 cd ${.CURDIR}/${_tool}; \
620 ${MAKE} DIRPRFX=${_tool}/ obj; \
621 ${MAKE} DIRPRFX=${_tool}/ depend; \

--- 185 unchanged lines hidden ---
615 usr.bin/makewhatis usr.bin/rpcgen usr.bin/uudecode \
616 usr.bin/xargs usr.bin/xinstall \
617 usr.sbin/config usr.sbin/kbdcontrol \
618 gnu/usr.bin/gperf gnu/usr.bin/groff gnu/usr.bin/texinfo
619 @${ECHODIR} "===> ${_tool}"; \
620 cd ${.CURDIR}/${_tool}; \
621 ${MAKE} DIRPRFX=${_tool}/ obj; \
622 ${MAKE} DIRPRFX=${_tool}/ depend; \

--- 185 unchanged lines hidden ---