158f0484fSRodney W. Grimes# @(#)Makefile 8.1 (Berkeley) 6/4/93 27f3dea24SPeter Wemm# $FreeBSD$ 3c9811e98SBruce Evans 4c9811e98SBruce Evans# To satisfy shared library or ELF linkage when only the libraries being 5c9811e98SBruce Evans# built are visible: 6c9811e98SBruce Evans# 70f09aefaSBruce Evans# csu must be built before all shared libaries for ELF. 8c9811e98SBruce Evans# libcom_err must be built before libss. 947acf556SBruce Evans# libcrypt must be built before libskey. 1009ee9e26SDavid E. O'Brien# libm must be built before libstdc++. 11468662e8SJohn Polstra# libmd must be built before libatm, libopie, libradius, libskey, 12468662e8SJohn Polstra# and libtacplus. 1347acf556SBruce Evans# libncurses must be built before libdialog. 1460da54eeSJohn Polstra# libradius must be built before libpam. 1560da54eeSJohn Polstra# libskey must be built before libpam. 1660da54eeSJohn Polstra# libtacplus must be built before libpam. 1747acf556SBruce Evans# libtermcap must be built before libcurses, libedit and libreadline. 18c9811e98SBruce Evans# 19c9811e98SBruce Evans# Otherwise, the SUBDIR list should be in alphabetical order. 20c9811e98SBruce Evans 21430299d4SPeter WemmSUBDIR= ${_csu} libcom_err ${_libcrypt} ${_libm} libmd \ 22430299d4SPeter Wemm libradius libskey libtacplus \ 233f8c4506SPoul-Henning Kamp ${_compat} libalias libatm libbind libc ${_libc_r} libcalendar libcam \ 24430299d4SPeter Wemm libcompat libdevstat libdisk libncurses libedit libfetch \ 2512e25f33SDoug Rabson libftpio libgnumalloc ${_libio} libipx libkvm libopie libpam \ 2660da54eeSJohn Polstra libpcap libresolv librpcsvc libss libstand \ 27f3fc2030SMark Murray ${_libtelnet} libutil ${_libvgl} libwrap libxpg4 liby libz 2858f0484fSRodney W. Grimes 29430299d4SPeter Wemm#SUBDIR+=libmenu libpanel libform 30430299d4SPeter Wemm 318deb7ff0SJohn Birrell.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT}) 328deb7ff0SJohn Birrell_csu=csu/${MACHINE_ARCH}-${OBJFORMAT} 335f160d14SJohn Birrell.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}) 34c9811e98SBruce Evans_csu=csu/${MACHINE_ARCH} 35b09f41a4SJohn Birrell.endif 36b09f41a4SJohn Birrell 375f160d14SJohn Birrell.if !defined(NOLIBC_R) 38c9811e98SBruce Evans_libc_r= libc_r 395f160d14SJohn Birrell.endif 40ff2edf0cSPeter Wemm 41efa3929eSMark Murray# Build both libraries. They have different names, so no harm, 42efa3929eSMark Murray# and this avoids having stale libscrypt.* 43efa3929eSMark Murray.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT) 44c932f886SPeter Wemm_libcrypt= ../secure/lib/libcrypt libcrypt 45c932f886SPeter Wemm.else 46c932f886SPeter Wemm_libcrypt= libcrypt 47e6af2dc8SAndrey A. Chernov.endif 48e6af2dc8SAndrey A. Chernov 49c9811e98SBruce Evans.if ${MACHINE_ARCH} == "i386" 50d78dcde2SGary Palmer_compat= compat 51c9811e98SBruce Evans_libvgl= libvgl 52d788c4fbSJohn Birrell.endif 53c9811e98SBruce Evans 546a7a98c9SJohn Birrell.if defined(WANT_CSRG_LIBM) 55c9811e98SBruce Evans_libm= libm 56b6059979SJordan K. Hubbard.else 57c9811e98SBruce Evans_libm= msun 58b6059979SJordan K. Hubbard.endif 59b6059979SJordan K. Hubbard 6012e25f33SDoug Rabson.if ${MACHINE_ARCH} == "alpha" 6112e25f33SDoug Rabson_libio= libio 6212e25f33SDoug Rabson.endif 6312e25f33SDoug Rabson 64c9811e98SBruce Evans.if defined(RELEASEDIR) || !exists(${.CURDIR}/../kerberosIV) || \ 65c9811e98SBruce Evans defined(NOCRYPT) || !defined(MAKE_KERBEROS4) 66c9811e98SBruce Evans_libtelnet= libtelnet 67c9811e98SBruce Evans.endif 688ff10292SPeter Wemm 6958f0484fSRodney W. Grimes.include <bsd.subdir.mk> 70