]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/Makefile
This commit was generated by cvs2svn to compensate for changes in r162017,
[FreeBSD/FreeBSD.git] / lib / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/4/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 # To satisfy shared library or ELF linkage when only the libraries being
7 # built are visible:
8 #
9 # csu must be built before all shared libaries for ELF.
10 # libcom_err must be built before libkrb5 and libpam.
11 # libcrypt must be built before libkrb5 and libpam.
12 # libkvm must be built before libdevstat.
13 # msun must be built before libg++ and libstdc++.
14 # libmd must be built before libatm, libopie, libradius, and libtacplus.
15 # libncurses must be built before libdialog, libedit and libreadline.
16 # libnetgraph must be built before libbsnmp/modules/snmp_netgraph.
17 # libopie must be built before libpam.
18 # libradius must be built before libpam.
19 # librpcsvc must be built before libpam.
20 # libsbuf must be built before libcam.
21 # libtacplus must be built before libpam.
22 # libutil must be built before libpam.
23 # libypclnt must be built before libpam.
24 #
25 # Otherwise, the SUBDIR list should be in alphabetical order.
26
27 SUBDIR= ${_csu} libbsm libcom_err libcrypt libkvm msun libmd libncurses \
28         libnetgraph libradius librpcsvc libsbuf libtacplus libutil \
29         ${_libypclnt} libalias libarchive ${_libatm} \
30         libbegemot ${_libbluetooth} libbsnmp libbz2 libc ${_libc_r} \
31         libcalendar libcam libcompat libdevinfo libdevstat libdisk \
32         libedit libexpat libfetch libform libftpio libgeom ${_libgpib} \
33         libgssapi libipsec \
34         ${_libipx} libkiconv libmagic libmemstat libmenu ${_libmilter} ${_libmp} \
35         ${_libncp} ${_libngatm} libopie libpam libpanel libpcap \
36         libpmc ${_libpthread} librt ${_libsdp} ${_libsm} ${_libsmb} \
37         ${_libsmdb} \
38         ${_libsmutil} libstand libtelnet ${_libthr} ${_libthread_db} libufs \
39         libugidfw ${_libusbhid} ${_libvgl} libwrap liby libz ${_bind}
40
41 .if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
42 _csu=csu/${MACHINE_ARCH}-elf
43 .elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
44 _csu=csu/${MACHINE_ARCH}
45 .else
46 _csu=csu
47 .endif
48
49 .if ${MK_ATM} != "no"
50 _libatm=        libatm
51 _libngatm=      libngatm
52 .endif
53
54 .if ${MK_BIND} != "no"
55 _bind=          bind
56 .endif
57
58 .if ${MK_BLUETOOTH} != "no"
59 _libbluetooth=  libbluetooth
60 _libsdp=        libsdp
61 .endif
62
63 .if ${MK_IPX} != "no"
64 _libipx=        libipx
65 .endif
66
67 .if ${MACHINE_ARCH} == "i386"
68 .if ${MK_NCP} != "no"
69 _libncp=        libncp
70 .endif
71 _libsmb=        libsmb
72 _libvgl=        libvgl
73 .endif
74
75 .if ${MACHINE_ARCH} == "ia64"
76 _libsmb=        libsmb
77 .endif
78
79 .if ${MACHINE_ARCH} != "arm" && ${MACHINE_ARCH} != "ia64" && \
80     ${MACHINE_ARCH} != "powerpc" && ${MK_LIBC_R} != "no"
81 _libc_r=
82 .endif
83
84 .if ${MK_SENDMAIL} != "no"
85 _libmilter=     libmilter
86 _libsm=         libsm
87 _libsmdb=       libsmdb
88 _libsmutil=     libsmutil
89 .endif
90
91 .if ${MK_OPENSSL} != "no"
92 _libmp=         libmp
93 .endif
94
95 .if ${MACHINE_ARCH} == "amd64"
96 .if ${MK_NCP} != "no"
97 _libncp=        libncp
98 .endif
99 _libsmb=        libsmb
100 .endif
101
102 .if ${MACHINE_ARCH} == "powerpc"
103 _libsmb=        libsmb
104 .endif
105
106 .if ${MK_LIBPTHREAD} != "no"
107 _libpthread=    libpthread
108 .endif
109
110 .if ${MK_LIBTHR} != "no"
111 _libthr= libthr
112 .endif
113
114 .if ${MACHINE_ARCH} != "arm"
115 _libthread_db= libthread_db
116 .endif
117
118 .if ${MK_USB} != "no"
119 _libusbhid=     libusbhid
120 .endif
121
122 .if ${MK_NIS} != "no"
123 _libypclnt=     libypclnt
124 .endif
125
126 .if ${MK_GPIB} != "no"
127 _libgpib=       libgpib
128 .endif
129
130 .include <bsd.subdir.mk>