Deleted Added
full compact
Makefile (128542) Makefile (129225)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 128542 2004-04-21 23:23:05Z grehan $
2# $FreeBSD: head/lib/Makefile 129225 2004-05-14 13:45:56Z cognet $
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.

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

21# libypclnt must be built before libpam.
22#
23# Otherwise, the SUBDIR list should be in alphabetical order.
24
25SUBDIR= ${_csu} libcom_err libcrypt libkvm msun libmd libncurses \
26 libnetgraph libradius librpcsvc libsbuf libtacplus libutil \
27 ${_libypclnt} ${_compat} libalias libarchive ${_libatm} ${_libbind} \
28 ${_libbluetooth} libbsnmp libbz2 libc ${_libc_r} \
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.

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

21# libypclnt must be built before libpam.
22#
23# Otherwise, the SUBDIR list should be in alphabetical order.
24
25SUBDIR= ${_csu} libcom_err libcrypt libkvm msun libmd libncurses \
26 libnetgraph libradius librpcsvc libsbuf libtacplus libutil \
27 ${_libypclnt} ${_compat} libalias libarchive ${_libatm} ${_libbind} \
28 ${_libbluetooth} libbsnmp libbz2 libc ${_libc_r} \
29 libcalendar libcam libcompat libdevinfo libdevstat libdisk \
29 libcalendar libcam libcompat libdevinfo libdevstat ${_libdisk} \
30 libedit libexpat libfetch libform libftpio libgeom ${_libio} libipsec \
31 libipx libisc libkiconv libmenu ${_libmilter} ${_libmp} ${_libncp} \
32 ${_libngatm} libopie libpam libpanel libpcap \
33 ${_libpthread} ${_libsdp} ${_libsm} ${_libsmb} ${_libsmdb} \
34 ${_libsmutil} libstand libtelnet ${_libthr} libufs libugidfw \
35 ${_libusbhid} ${_libvgl} libwrap libxpg4 liby libz
36
37.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
38_csu=csu/${MACHINE_ARCH}-elf
39.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
40_csu=csu/${MACHINE_ARCH}
41.else
42_csu=csu
43.endif
44
45# libc_r is obsolete on ia64.
30 libedit libexpat libfetch libform libftpio libgeom ${_libio} libipsec \
31 libipx libisc libkiconv libmenu ${_libmilter} ${_libmp} ${_libncp} \
32 ${_libngatm} libopie libpam libpanel libpcap \
33 ${_libpthread} ${_libsdp} ${_libsm} ${_libsmb} ${_libsmdb} \
34 ${_libsmutil} libstand libtelnet ${_libthr} libufs libugidfw \
35 ${_libusbhid} ${_libvgl} libwrap libxpg4 liby libz
36
37.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
38_csu=csu/${MACHINE_ARCH}-elf
39.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
40_csu=csu/${MACHINE_ARCH}
41.else
42_csu=csu
43.endif
44
45# libc_r is obsolete on ia64.
46.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "powerpc"
46.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "powerpc" && \
47 ${MACHINE_ARCH} != "arm"
47.if !defined(NOLIBC_R)
48_libc_r= libc_r
49.endif
50.endif
51
52.if !defined(NOATM)
53_libatm= libatm
54_libngatm= libngatm

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

91.endif
92
93.if ${MACHINE_ARCH} != "powerpc"
94.if !defined(NOLIBPTHREAD)
95_libpthread= libpthread
96.endif
97.endif
98
48.if !defined(NOLIBC_R)
49_libc_r= libc_r
50.endif
51.endif
52
53.if !defined(NOATM)
54_libatm= libatm
55_libngatm= libngatm

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

92.endif
93
94.if ${MACHINE_ARCH} != "powerpc"
95.if !defined(NOLIBPTHREAD)
96_libpthread= libpthread
97.endif
98.endif
99
99.if ${MACHINE_ARCH} != "amd64"
100.if ${MACHINE_ARCH} != "amd64" && ${MACHINE_ARCH} != "arm"
100.if !defined(NOLIBTHR)
101_libthr= libthr
102.endif
103.endif
104
101.if !defined(NOLIBTHR)
102_libthr= libthr
103.endif
104.endif
105
106.if ${MACHINE_ARCH} != "arm"
107_libdisk= libdisk
108.endif
109
105.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
106_libmp= libmp
107.endif
108
109.if !defined(NO_YP_LIBC)
110_libypclnt= libypclnt
111.endif
112
113.include <bsd.subdir.mk>
110.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
111_libmp= libmp
112.endif
113
114.if !defined(NO_YP_LIBC)
115_libypclnt= libypclnt
116.endif
117
118.include <bsd.subdir.mk>