Deleted Added
full compact
Makefile.libcompat (124873) Makefile.libcompat (125261)
1#
1#
2# $FreeBSD: head/Makefile.inc1 124873 2004-01-23 16:22:49Z harti $
2# $FreeBSD: head/Makefile.inc1 125261 2004-01-31 08:15:57Z ru $
3#
4# Make command line options:
5# -DNO_DYNAMICROOT do not link /bin and /sbin dynamically
6# -DNO_KERBEROS Do not build Heimdal (Kerberos 5)
7# -DNO_RESCUE do not build rescue binaries
8# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
9# -DNOCLEAN do not clean at all
10# -DNOCRYPT will prevent building of crypt versions

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

693.endif
694
695.if !defined(NO_FORTRAN)
696_fortran= gnu/usr.bin/cc/f771
697.endif
698
699.if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
700 !defined(NOCRYPT) && !defined(NO_OPENSSL) && !defined(NO_KERBEROS)
3#
4# Make command line options:
5# -DNO_DYNAMICROOT do not link /bin and /sbin dynamically
6# -DNO_KERBEROS Do not build Heimdal (Kerberos 5)
7# -DNO_RESCUE do not build rescue binaries
8# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
9# -DNOCLEAN do not clean at all
10# -DNOCRYPT will prevent building of crypt versions

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

693.endif
694
695.if !defined(NO_FORTRAN)
696_fortran= gnu/usr.bin/cc/f771
697.endif
698
699.if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
700 !defined(NOCRYPT) && !defined(NO_OPENSSL) && !defined(NO_KERBEROS)
701_libkrb5= kerberos5/lib/libroken kerberos5/lib/libvers \
702 kerberos5/lib/libasn1 kerberos5/lib/libhdb kerberos5/lib/libsl
701_kerberos5_tools= kerberos5/tools
703.endif
704
705.if exists(${.CURDIR}/rescue) && !defined(NO_RESCUE)
706_rescue= rescue/rescue
707.endif
708
709build-tools:
710.for _tool in \
711 bin/csh \
712 bin/sh \
713 ${_rescue} \
714 gnu/usr.bin/cc/cc_tools \
715 ${_fortran} \
702.endif
703
704.if exists(${.CURDIR}/rescue) && !defined(NO_RESCUE)
705_rescue= rescue/rescue
706.endif
707
708build-tools:
709.for _tool in \
710 bin/csh \
711 bin/sh \
712 ${_rescue} \
713 gnu/usr.bin/cc/cc_tools \
714 ${_fortran} \
716 ${_libkrb5} \
717 lib/libncurses \
718 ${_share} \
719 ${_aicasm} \
720 usr.bin/awk \
721 usr.bin/file \
722 usr.sbin/sysinstall
723 @${ECHODIR} "===> ${_tool}"; \
724 cd ${.CURDIR}/${_tool}; \
725 ${MAKE} DIRPRFX=${_tool}/ obj; \
726 ${MAKE} DIRPRFX=${_tool}/ build-tools
727.endfor
715 lib/libncurses \
716 ${_share} \
717 ${_aicasm} \
718 usr.bin/awk \
719 usr.bin/file \
720 usr.sbin/sysinstall
721 @${ECHODIR} "===> ${_tool}"; \
722 cd ${.CURDIR}/${_tool}; \
723 ${MAKE} DIRPRFX=${_tool}/ obj; \
724 ${MAKE} DIRPRFX=${_tool}/ build-tools
725.endfor
726.for _tool in \
727 ${_kerberos5_tools}
728 @${ECHODIR} "===> ${_tool}"; \
729 cd ${.CURDIR}/${_tool}; \
730 ${MAKE} DIRPRFX=${_tool}/ obj; \
731 ${MAKE} DIRPRFX=${_tool}/ depend; \
732 ${MAKE} DIRPRFX=${_tool}/ all
733.endfor
728
729#
730# cross-tools: Build cross-building tools
731#
732.if ${TARGET_ARCH} == "sparc64" && ${TARGET_ARCH} != ${MACHINE_ARCH} && \
733 ${BOOTSTRAPPING} < 500037
734_elf2aout= usr.bin/elf2aout
735.endif

--- 154 unchanged lines hidden ---
734
735#
736# cross-tools: Build cross-building tools
737#
738.if ${TARGET_ARCH} == "sparc64" && ${TARGET_ARCH} != ${MACHINE_ARCH} && \
739 ${BOOTSTRAPPING} < 500037
740_elf2aout= usr.bin/elf2aout
741.endif

--- 154 unchanged lines hidden ---