Deleted Added
full compact
Makefile (108742) Makefile (108753)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 108742 2003-01-05 22:37:54Z tmm $
2# $FreeBSD: head/lib/Makefile 108753 2003-01-06 00:56:23Z marcel $
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 libkrb and libpam.
9# libcrypt must be built before libkrb and libpam.
10# libkvm must be built before libdevstat.

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

35.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
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
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 libkrb and libpam.
9# libcrypt must be built before libkrb and libpam.
10# libkvm must be built before libdevstat.

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

35.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
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.if !defined(NOLIBC_R) && ${MACHINE_ARCH} != ia64
43.if !defined(NOLIBC_R)
44_libc_r= libc_r
45.endif
46
47.if !defined(NO_BIND)
48_libbind= libbind
49.endif
50
51.if !defined(NO_SENDMAIL)

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

--- 30 unchanged lines hidden ---