diff options
author | Bruce Evans <bde@FreeBSD.org> | 2000-01-16 04:43:11 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 2000-01-16 04:43:11 +0000 |
commit | c5da4b13a57796887e45d6b9051d76cd3b9c39a6 (patch) | |
tree | 5a4ee088d7d501026713f41aa7450feccd83b53a /lib/Makefile | |
parent | 2f00e5fdc42e186b6a8a3818e37373fe01441714 (diff) | |
download | src-test2-c5da4b13a57796887e45d6b9051d76cd3b9c39a6.tar.gz src-test2-c5da4b13a57796887e45d6b9051d76cd3b9c39a6.zip |
Notes
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/Makefile b/lib/Makefile index 5a60f3ac6c49..8c748ff036bc 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -5,15 +5,16 @@ # built are visible: # # csu must be built before all shared libaries for ELF. -# libcom_err must be built before libss. -# libcrypt must be built before libkrb and libskey. -# libm must be built before libstdc++. +# libcom_err must be built before libkrb, libpam and libss. +# libcrypt must be built before libkrb, libpam and libskey. +# libm must be built before libg++ and libstdc++. # libmd must be built before libatm, libcrypt, libopie, libradius, libskey, # and libtacplus. # libncurses must be built before libdialog, libedit and libreadline. # libradius must be built before libpam. # libskey must be built before libpam. # libtacplus must be built before libpam. +# libutil must be built before libpam. # # Otherwise, the SUBDIR list should be in alphabetical order. @@ -25,7 +26,7 @@ SUBDIR= ${_csu} libcom_err ${_libm} libmd ${_libcrypt} \ ${_libncp} \ libnetgraph libopie libpam libpanel libpcap \ libposix1e libresolv librpcsvc libss \ - libstand ${_libtelnet} libutil ${_libvgl} libwrap libxpg4 liby libz \ + libstand ${_libtelnet} libutil ${_libvgl} libwrap libxpg4 liby libz .if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT}) _csu=csu/${MACHINE_ARCH}-${OBJFORMAT} |