Deleted Added
full compact
Makefile (81920) Makefile (82355)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 81920 2001-08-19 21:32:52Z kris $
2# $FreeBSD: head/lib/Makefile 82355 2001-08-26 17:49:51Z markm $
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.
11# msun must be built before libg++ and libstdc++.
12# libmd must be built before libatm, libopie, libradius, and libtacplus.
13# libncurses must be built before libdialog, libedit and libreadline.
14# libopie must be built before libpam.
15# libradius must be built before libpam.
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.
11# msun must be built before libg++ and libstdc++.
12# libmd must be built before libatm, libopie, libradius, and libtacplus.
13# libncurses must be built before libdialog, libedit and libreadline.
14# libopie must be built before libpam.
15# libradius must be built before libpam.
16# librpcsvc must be built before libpam.
16# libtacplus must be built before libpam.
17# libutil must be built before libpam.
18# libsbuf must be built before libcam.
19#
20# Otherwise, the SUBDIR list should be in alphabetical order.
21
22SUBDIR= ${_csu} libcom_err libcrypt libkvm msun libmd \
17# libtacplus must be built before libpam.
18# libutil must be built before libpam.
19# libsbuf must be built before libcam.
20#
21# Otherwise, the SUBDIR list should be in alphabetical order.
22
23SUBDIR= ${_csu} libcom_err libcrypt libkvm msun libmd \
23 libncurses libradius libtacplus libutil libsbuf \
24 libncurses libradius librpcsvc libtacplus libutil libsbuf \
24 ${_compat} libalias libatm ${_libbind} libbz2 libc ${_libc_r} \
25 libcalendar libcam libcompat libdevinfo libdevstat libdisk \
26 libedit libfetch libform libftpio libgnumalloc ${_libio} libipsec \
27 libipx libisc libmenu ${_libmp} ${_libncp} \
28 libnetgraph libopie libpam libpanel libpcap \
25 ${_compat} libalias libatm ${_libbind} libbz2 libc ${_libc_r} \
26 libcalendar libcam libcompat libdevinfo libdevstat libdisk \
27 libedit libfetch libform libftpio libgnumalloc ${_libio} libipsec \
28 libipx libisc libmenu ${_libmp} ${_libncp} \
29 libnetgraph libopie libpam libpanel libpcap \
29 libresolv librpcsvc libsmdb libsmutil \
30 libresolv libsmdb libsmutil \
30 libstand ${_libtelnet} libusb ${_libvgl} libwrap libxpg4 liby libz
31
32.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
33_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
34.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
35_csu=csu/${MACHINE_ARCH}
36.else
37_csu=csu

--- 32 unchanged lines hidden ---
31 libstand ${_libtelnet} libusb ${_libvgl} libwrap libxpg4 liby libz
32
33.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
34_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
35.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
36_csu=csu/${MACHINE_ARCH}
37.else
38_csu=csu

--- 32 unchanged lines hidden ---