xref: /freebsd/lib/Makefile (revision f05d1ad2e34906054ce025ab91c87b4976a445fc)
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.
9fac91f24SBruce Evans# libcrypt must be built before libkrb and libskey.
1009ee9e26SDavid E. O'Brien# libm must be built before libstdc++.
11fac91f24SBruce Evans# libmd must be built before libatm, libcrypt, libopie, libradius, libskey,
12fac91f24SBruce Evans# and libtacplus.
1368db2328SPeter Wemm# libncurses must be built before libdialog, libedit and libreadline.
1460da54eeSJohn Polstra# libradius must be built before libpam.
1560da54eeSJohn Polstra# libskey must be built before libpam.
1660da54eeSJohn Polstra# libtacplus must be built before libpam.
17c9811e98SBruce Evans#
18c9811e98SBruce Evans# Otherwise, the SUBDIR list should be in alphabetical order.
19c9811e98SBruce Evans
207b2d810aSMark MurraySUBDIR=	${_csu} libcom_err ${_libm} libmd ${_libcrypt} \
21fac91f24SBruce Evans	libncurses libradius libskey libtacplus \
223f8c4506SPoul-Henning Kamp	${_compat} libalias libatm libbind libc ${_libc_r} libcalendar libcam \
2332d1ebacSPeter Wemm	libcompat libdevstat libdisk libedit libfetch libform \
2432d1ebacSPeter Wemm	libftpio libgnumalloc ${_libio} libipx libkvm libmenu libopie libpam \
2532d1ebacSPeter Wemm	libpanel libpcap libresolv librpcsvc libss libstand \
26f3fc2030SMark Murray	${_libtelnet} libutil ${_libvgl} libwrap libxpg4 liby libz
2758f0484fSRodney W. Grimes
288deb7ff0SJohn Birrell.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
298deb7ff0SJohn Birrell_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
305f160d14SJohn Birrell.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
31c9811e98SBruce Evans_csu=csu/${MACHINE_ARCH}
32b09f41a4SJohn Birrell.endif
33b09f41a4SJohn Birrell
345f160d14SJohn Birrell.if !defined(NOLIBC_R)
35c9811e98SBruce Evans_libc_r=	libc_r
365f160d14SJohn Birrell.endif
37ff2edf0cSPeter Wemm
387b2d810aSMark Murray_libcrypt=	libcrypt
397b2d810aSMark Murray.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
40efa3929eSMark Murray# Build both libraries. They have different names, so no harm,
41efa3929eSMark Murray# and this avoids having stale libscrypt.*
427b2d810aSMark Murray_libcrypt+=	../secure/lib/libcrypt
43e6af2dc8SAndrey A. Chernov.endif
44e6af2dc8SAndrey A. Chernov
45c9811e98SBruce Evans.if ${MACHINE_ARCH} == "i386"
46d78dcde2SGary Palmer_compat=	compat
47c9811e98SBruce Evans_libvgl=	libvgl
48d788c4fbSJohn Birrell.endif
49c9811e98SBruce Evans
506a7a98c9SJohn Birrell.if defined(WANT_CSRG_LIBM)
51c9811e98SBruce Evans_libm=		libm
52b6059979SJordan K. Hubbard.else
53c9811e98SBruce Evans_libm=		msun
54b6059979SJordan K. Hubbard.endif
55b6059979SJordan K. Hubbard
5612e25f33SDoug Rabson.if ${MACHINE_ARCH} == "alpha"
5712e25f33SDoug Rabson_libio=		libio
5812e25f33SDoug Rabson.endif
5912e25f33SDoug Rabson
60f05d1ad2SMark Murray.if defined(RELEASEDIR) || \
61f05d1ad2SMark Murray    (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
62c9811e98SBruce Evans    defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
63c9811e98SBruce Evans_libtelnet=	libtelnet
64c9811e98SBruce Evans.endif
658ff10292SPeter Wemm
6658f0484fSRodney W. Grimes.include <bsd.subdir.mk>
67