xref: /freebsd/lib/Makefile (revision cd7249ff6a8886676e016edf7db2854f67d868ae)
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 \
22072355e0SPeter Wemm	${_compat} libalias libatm ${_libbind} libc ${_libc_r} libcalendar \
23072355e0SPeter Wemm	libcam libcompat libdevstat libdisk libedit libfetch libform \
249a4365d0SYoshinobu Inoue	libftpio libgnumalloc ${_libio} libipsec libipx libkvm libmenu \
259a4365d0SYoshinobu Inoue	${_libncp} \
26cd7249ffSRobert Watson	libnetgraph libopie libpam libpanel libpcap \
27cd7249ffSRobert Watson	libposix1e libresolv librpcsvc libss \
28cd7249ffSRobert Watson	libstand ${_libtelnet} libutil ${_libvgl} libwrap libxpg4 liby libz \
2958f0484fSRodney W. Grimes
308deb7ff0SJohn Birrell.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
318deb7ff0SJohn Birrell_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
325f160d14SJohn Birrell.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
33c9811e98SBruce Evans_csu=csu/${MACHINE_ARCH}
34b09f41a4SJohn Birrell.endif
35b09f41a4SJohn Birrell
365f160d14SJohn Birrell.if !defined(NOLIBC_R)
37c9811e98SBruce Evans_libc_r=	libc_r
385f160d14SJohn Birrell.endif
39ff2edf0cSPeter Wemm
4083b8ab27SPeter Wemm.if !defined(NO_BIND)
41072355e0SPeter Wemm_libbind=	libbind
42072355e0SPeter Wemm.endif
43072355e0SPeter Wemm
447b2d810aSMark Murray_libcrypt=	libcrypt
457b2d810aSMark Murray.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
46efa3929eSMark Murray# Build both libraries. They have different names, so no harm,
47efa3929eSMark Murray# and this avoids having stale libscrypt.*
487b2d810aSMark Murray_libcrypt+=	../secure/lib/libcrypt
49e6af2dc8SAndrey A. Chernov.endif
50e6af2dc8SAndrey A. Chernov
51c9811e98SBruce Evans.if ${MACHINE_ARCH} == "i386"
52d78dcde2SGary Palmer_compat=	compat
53f24bb3a4SBoris Popov_libncp=	libncp
54c9811e98SBruce Evans_libvgl=	libvgl
55d788c4fbSJohn Birrell.endif
56c9811e98SBruce Evans
576a7a98c9SJohn Birrell.if defined(WANT_CSRG_LIBM)
58c9811e98SBruce Evans_libm=		libm
59b6059979SJordan K. Hubbard.else
60c9811e98SBruce Evans_libm=		msun
61b6059979SJordan K. Hubbard.endif
62b6059979SJordan K. Hubbard
6312e25f33SDoug Rabson.if ${MACHINE_ARCH} == "alpha"
6412e25f33SDoug Rabson_libio=		libio
6512e25f33SDoug Rabson.endif
6612e25f33SDoug Rabson
67f05d1ad2SMark Murray.if defined(RELEASEDIR) || \
68f05d1ad2SMark Murray    (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
69c9811e98SBruce Evans    defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
70c9811e98SBruce Evans_libtelnet=	libtelnet
71c9811e98SBruce Evans.endif
728ff10292SPeter Wemm
7358f0484fSRodney W. Grimes.include <bsd.subdir.mk>
74