Deleted Added
full compact
Makefile (116862) Makefile (116906)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 116862 2003-06-26 03:48:23Z peter $
2# $FreeBSD: head/lib/Makefile 116906 2003-06-27 07:41:51Z 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# libc_r is obsolete on ia64.
44.if ${MACHINE_ARCH} != "ia64"
43.if !defined(NOLIBC_R)
44_libc_r= libc_r
45.endif
45.if !defined(NOLIBC_R)
46_libc_r= libc_r
47.endif
48.endif
46
47.if !defined(NO_BIND)
48_libbind= libbind
49.endif
50
51.if !defined(NO_SENDMAIL)
52_libmilter= libmilter
53_libsm= libsm

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

64_libpthread= libpthread
65.endif
66.if !defined(NOLIBTHR)
67_libthr= libthr
68.endif
69.endif
70
71.if ${MACHINE_ARCH} == "ia64"
49
50.if !defined(NO_BIND)
51_libbind= libbind
52.endif
53
54.if !defined(NO_SENDMAIL)
55_libmilter= libmilter
56_libsm= libsm

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

67_libpthread= libpthread
68.endif
69.if !defined(NOLIBTHR)
70_libthr= libthr
71.endif
72.endif
73
74.if ${MACHINE_ARCH} == "ia64"
75.if !defined(NOLIBPTHREAD)
76_libpthread= libpthread
77.endif
72.if !defined(NOLIBTHR)
73_libthr= libthr
74.endif
75.endif
76
77.if ${MACHINE_ARCH} == "alpha"
78_libio= libio
79_compat= compat

--- 17 unchanged lines hidden ---
78.if !defined(NOLIBTHR)
79_libthr= libthr
80.endif
81.endif
82
83.if ${MACHINE_ARCH} == "alpha"
84_libio= libio
85_compat= compat

--- 17 unchanged lines hidden ---