diff options
-rw-r--r-- | lib/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/Makefile b/lib/Makefile index 44764a4e330f..8ce66b736750 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/4/93 -# $Id: Makefile,v 1.82 1998/10/13 16:48:43 bde Exp $ +# $Id: Makefile,v 1.83 1998/11/13 01:01:37 jdp Exp $ # To satisfy shared library or ELF linkage when only the libraries being # built are visible: @@ -13,16 +13,17 @@ # libmytinfo must be built before libdialog and libncurses. # libncurses must be built before libdialog. # libtermcap must be built before libcurses, libedit and libreadline. +# libradius and libtacplus must be built before libpam. # # Otherwise, the SUBDIR list should be in alphabetical order. SUBDIR= ${_csu} libcom_err ${_libcrypt} ${_libm} libmd libmytinfo \ - libncurses libtermcap \ + libncurses libtermcap libradius libtacplus \ ${_compat} libalias libatm libbind libc ${_libc_r} libcalendar libcam \ libcompat libcurses libdevstat libdisk libedit libf2c libfetch \ - libftpio libgnumalloc libipx libkvm libopie \ - libpcap libradius libresolv librpcsvc libskey libss libstand \ - libtacplus ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz + libftpio libgnumalloc libipx libkvm libopie libpam \ + libpcap libresolv librpcsvc libskey libss libstand \ + ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz .if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT}) _csu=csu/${MACHINE_ARCH}-${OBJFORMAT} |