Deleted Added
full compact
Makefile (53922) Makefile (53927)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 53922 1999-11-30 04:22:25Z peter $
2# $FreeBSD: head/lib/Makefile 53927 1999-11-30 06:13:10Z peter $
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 libss.
9# libcrypt must be built before libkrb and libskey.
10# libm must be built before libstdc++.

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

30.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
31_csu=csu/${MACHINE_ARCH}
32.endif
33
34.if !defined(NOLIBC_R)
35_libc_r= libc_r
36.endif
37
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 libss.
9# libcrypt must be built before libkrb and libskey.
10# libm must be built before libstdc++.

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

30.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
31_csu=csu/${MACHINE_ARCH}
32.endif
33
34.if !defined(NOLIBC_R)
35_libc_r= libc_r
36.endif
37
38.if !defined(NO_BIND) && 0
38.if !defined(NO_BIND)
39_libbind= libbind
40.endif
41
42_libcrypt= libcrypt
43.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
44# Build both libraries. They have different names, so no harm,
45# and this avoids having stale libscrypt.*
46_libcrypt+= ../secure/lib/libcrypt

--- 25 unchanged lines hidden ---
39_libbind= libbind
40.endif
41
42_libcrypt= libcrypt
43.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
44# Build both libraries. They have different names, so no harm,
45# and this avoids having stale libscrypt.*
46_libcrypt+= ../secure/lib/libcrypt

--- 25 unchanged lines hidden ---