Deleted Added
full compact
Makefile (118694) Makefile (119002)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 118694 2003-08-09 15:29:52Z deischen $
2# $FreeBSD: head/lib/Makefile 119002 2003-08-16 21:21:07Z obrien $
3
4# To satisfy shared library or ELF linkage when only the libraries being
5# built are visible:
6#
7# csu must be built before all shared libaries for ELF.
8# libcom_err must be built before libkrb5 and libpam.
9# libcrypt must be built before libkrb5 and libpam.
10# libkvm must be built before libdevstat.

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

36_csu=csu/${MACHINE_ARCH}-elf
37.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
38_csu=csu/${MACHINE_ARCH}
39.else
40_csu=csu
41.endif
42
43# libc_r is obsolete on ia64.
3
4# To satisfy shared library or ELF linkage when only the libraries being
5# built are visible:
6#
7# csu must be built before all shared libaries for ELF.
8# libcom_err must be built before libkrb5 and libpam.
9# libcrypt must be built before libkrb5 and libpam.
10# libkvm must be built before libdevstat.

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

36_csu=csu/${MACHINE_ARCH}-elf
37.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
38_csu=csu/${MACHINE_ARCH}
39.else
40_csu=csu
41.endif
42
43# libc_r is obsolete on ia64.
44.if ${MACHINE_ARCH} != "ia64"
44.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "powerpc"
45.if !defined(NOLIBC_R)
46_libc_r= libc_r
47.endif
48.endif
49
50.if !defined(NO_BIND)
51_libbind= libbind
52.endif

--- 46 unchanged lines hidden ---
45.if !defined(NOLIBC_R)
46_libc_r= libc_r
47.endif
48.endif
49
50.if !defined(NO_BIND)
51_libbind= libbind
52.endif

--- 46 unchanged lines hidden ---