Deleted Added
full compact
Makefile (117978) Makefile (118675)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 117978 2003-07-24 18:30:25Z markm $
2# $FreeBSD: head/lib/Makefile 118675 2003-08-08 21:16:06Z deischen $
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.

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

77.if ${MACHINE_ARCH} == "alpha"
78_libio= libio
79_compat= compat
80.endif
81
82.if ${MACHINE_ARCH} == "amd64"
83_libncp= libncp
84_libsmb= libsmb
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.

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

77.if ${MACHINE_ARCH} == "alpha"
78_libio= libio
79_compat= compat
80.endif
81
82.if ${MACHINE_ARCH} == "amd64"
83_libncp= libncp
84_libsmb= libsmb
85.if !defined(NOLIBPTHREAD)
86_libpthread= libpthread
85.endif
87.endif
88.endif
86
87.if ${MACHINE_ARCH} != "amd64" && ${MACHINE_ARCH} != "powerpc"
88.if !defined(NOLIBTHR)
89_libthr= libthr
90.endif
91.endif
92
93.if ${MACHINE_ARCH} != "powerpc"
94_libdisk= libdisk
95.endif
96
97.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
98_libmp= libmp
99.endif
100
101.include <bsd.subdir.mk>
89
90.if ${MACHINE_ARCH} != "amd64" && ${MACHINE_ARCH} != "powerpc"
91.if !defined(NOLIBTHR)
92_libthr= libthr
93.endif
94.endif
95
96.if ${MACHINE_ARCH} != "powerpc"
97_libdisk= libdisk
98.endif
99
100.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
101_libmp= libmp
102.endif
103
104.include <bsd.subdir.mk>