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

--- 34 unchanged lines hidden ---
28 libnetgraph libopie libpam libpanel libpcap \
29 libresolv librpcsvc libsmdb libsmutil libss \
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}

--- 34 unchanged lines hidden ---