]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/Makefile
This commit was generated by cvs2svn to compensate for changes in r68325,
[FreeBSD/FreeBSD.git] / lib / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/4/93
2 # $FreeBSD$
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, libpam and libss.
9 # libcrypt must be built before libkrb, libpam and libskey.
10 # msun must be built before libg++ and libstdc++.
11 # libmd must be built before libatm, libopie, libradius, libskey, and
12 # 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 # libskey must be built before libpam.
17 # libtacplus must be built before libpam.
18 # libutil must be built before libpam.
19 #
20 # Otherwise, the SUBDIR list should be in alphabetical order.
21
22 SUBDIR= ${_csu} libcom_err ${_libcrypt} msun libmd \
23         libncurses libradius libskey libtacplus libutil \
24         ${_compat} libalias libatm ${_libbind} libc ${_libc_r} libcalendar \
25         libcam libcompat libdevstat libdisk libedit libfetch libform \
26         libftpio libgnumalloc ${_libio} libipsec libipx libisc libkvm libmenu \
27         ${_libncp} \
28         libnetgraph libopie libpam libpanel libpcap \
29         libposix1e libresolv librpcsvc libsmdb libsmutil libss \
30         libstand ${_libtelnet} libusb ${_libvgl} libwrap libxpg4 liby libz
31
32 .if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
33 _csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
34 .elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
35 _csu=csu/${MACHINE_ARCH}
36 .endif
37
38 .if !defined(NOLIBC_R)
39 _libc_r=        libc_r
40 .endif
41
42 .if !defined(NO_BIND)
43 _libbind=       libbind
44 .endif
45
46 _libcrypt=      libcrypt
47 .if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT) && !defined(NO_DESCRYPT)
48 # Build both libraries. They have different names, so no harm,
49 # and this avoids having stale libscrypt.*
50 _libcrypt+=     ../secure/lib/libcrypt
51 .endif
52
53 .if ${MACHINE_ARCH} == "i386"
54 _compat=        compat
55 _libncp=        libncp
56 _libvgl=        libvgl
57 .endif
58
59 .if ${MACHINE_ARCH} == "alpha"
60 _libio=         libio
61 .endif
62
63 .if defined(RELEASEDIR) || \
64     (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
65     defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
66 _libtelnet=     libtelnet
67 .endif
68
69 .include <bsd.subdir.mk>