General cleanups as part of the libcaps userland threading work.
[dragonfly.git] / lib / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/4/93
2 # $FreeBSD: src/lib/Makefile,v 1.107.2.16 2002/10/10 19:24:35 kbyanc Exp $
3 # $DragonFly: src/lib/Makefile,v 1.4 2003/08/05 07:45:41 asmodai Exp $
4
5 # To satisfy shared library or ELF linkage when only the libraries being
6 # built are visible:
7 #
8 # csu must be built before all shared libaries for ELF.
9 # libcom_err must be built before libkrb and libpam.
10 # libcrypt must be built before libkrb, libpam and libskey.
11 # msun must be built before libg++ and libstdc++.
12 # libmd must be built before libatm, libopie, libradius, libskey, and
13 # libtacplus.
14 # libncurses must be built before libdialog, libedit and libreadline.
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 # libsbuf must be built before libcam.
20 #
21 # Otherwise, the SUBDIR list should be in alphabetical order.
22
23 SUBDIR= ${_csu} libcom_err libcrypt msun libmd \
24         libncurses libradius libskey libtacplus libutil libsbuf \
25         ${_compat} libalias libatm ${_libbind} libbz2 libc ${_libc_r} libcalendar \
26         libcam libcompat libdevstat libdisk libedit libfetch libform \
27         libftpio ${_libio} libipsec libipx libisc libkvm libmenu \
28         ${_libmilter} ${_libncp} \
29         libnetgraph libopie libpam libpanel libpcap \
30         libposix1e librpcsvc ${_libsm} ${_libsmb} ${_libsmdb} \
31         ${_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})
37 _csu=csu/${MACHINE_ARCH}
38 .endif
39
40 .if !defined(NOLIBC_R)
41 _libc_r=        libc_r
42 .endif
43
44 .if !defined(NO_BIND)
45 _libbind=       libbind
46 .endif
47
48 .if !defined(NO_SENDMAIL)
49 _libmilter=     libmilter
50 _libsm=         libsm
51 _libsmdb=       libsmdb
52 _libsmutil=     libsmutil
53 .endif
54
55 .if ${MACHINE_ARCH} == "i386"
56 _compat=        compat
57 _libncp=        libncp
58 _libsmb=        libsmb
59 _libvgl=        libvgl
60 .endif
61
62 .if ${MACHINE_ARCH} == "alpha"
63 _libio=         libio
64 _compat=        compat
65 .endif
66
67 .if defined(RELEASEDIR) || \
68     !exists(${.CURDIR}/../secure) || defined(NOCRYPT)
69 _libtelnet=     libtelnet
70 .endif
71
72 .include <bsd.subdir.mk>