Makefile (3d8239856cae570246a9b4d31f427c99496883d8) Makefile (f29db4e7ef65897915e4e82af985e263874cdcb2)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD$
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.

--- 27 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.
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD$
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.

--- 27 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 ---