Makefile revision 94690
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 94690 2002-04-14 22:27:12Z des $
3
4# To satisfy shared library or ELF linkage when only the libraries being
5# built are visible:
6#
7# csu must be built before all shared libaries for ELF.
8# libcom_err must be built before libkrb and libpam.
9# libcrypt must be built before libkrb and libpam.
10# libkvm must be built before libdevstat.
11# msun must be built before libg++ and libstdc++.
12# libmd must be built before libatm, libopie, libradius, and libtacplus.
13# libncurses must be built before libdialog, libedit and libreadline.
14# libopie must be built before libpam.
15# libradius must be built before libpam.
16# librpcsvc must be built before libpam.
17# libsbuf must be built before libcam.
18# libtacplus must be built before libpam.
19# libutil must be built before libpam.
20# libypclnt must be built before libpam.
21#
22# Otherwise, the SUBDIR list should be in alphabetical order.
23
24SUBDIR=	${_csu} libcom_err libcrypt libkvm msun libmd \
25	libncurses libradius librpcsvc libsbuf libtacplus libutil libypclnt \
26	${_compat} libalias libatm ${_libbind} libbz2 libc ${_libc_r} \
27	libcalendar libcam libcompat libdevinfo libdevstat libdisk \
28	libedit libfetch libform libftpio ${_libgnumalloc} ${_libio} libipsec \
29	libipx libisc libmenu ${_libmilter} ${_libmp} ${_libncp} \
30	libnetgraph libopie libpam libpanel libpcap \
31	${_libresolv} ${_libsm} ${_libsmb} ${_libsmdb} ${_libsmutil} \
32	libstand ${_libtelnet} libusbhid ${_libvgl} libwrap libxpg4 liby libz
33
34.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
35_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
36.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
37_csu=csu/${MACHINE_ARCH}
38.else
39_csu=csu
40.endif
41
42.if ${MACHINE_ARCH} == "i386"
43_libgnumalloc=	libgnumalloc
44_libresolv=	libresolv
45.endif
46
47.if !defined(NOLIBC_R) && ${MACHINE_ARCH} != ia64
48_libc_r=	libc_r
49.endif
50
51.if !defined(NO_BIND)
52_libbind=	libbind
53.endif
54
55.if !defined(NO_SENDMAIL)
56_libmilter=	libmilter
57_libsm=		libsm
58_libsmdb=	libsmdb
59_libsmutil=	libsmutil
60.endif
61
62.if ${MACHINE_ARCH} == "i386"
63_compat=	compat
64_libncp=	libncp
65_libsmb=	libsmb
66_libvgl=	libvgl
67.endif
68
69.if ${MACHINE_ARCH} == "alpha"
70_libio=		libio
71_compat=	compat
72.endif
73
74.if defined(RELEASEDIR) || \
75    (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
76    defined(NOCRYPT) || (defined(NOSECURE) && !defined(MAKE_KERBEROS4))
77_libtelnet=	libtelnet
78.endif
79
80.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
81_libmp=		libmp
82.endif
83
84.include <bsd.subdir.mk>
85