]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/Makefile
Add wrappers for i386_*_ioperm, i386_vm86 so userland code does
[FreeBSD/FreeBSD.git] / lib / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/4/93
2 #       $Id: Makefile,v 1.68 1998/05/13 22:54:03 jb Exp $
3
4 # To satisfy shared library or ELF linkage when only the libraries being
5 # built are visible:
6 #
7 # libcom_err must be built before libss.
8 # libcrypt and libmd must be built before libskey.
9 # libm must be built before libtcl.
10 # libmytinfo must be built before libncurses.
11 # libtermcap must be built before libcurses and libedit.
12 #
13 # Otherwise, the SUBDIR list should be in alphabetical order.
14
15 SUBDIR= libcom_err ${_libcrypt} ${_libm} libmytinfo libtermcap \
16         compat ${_csu} libalias libbind libc ${_libc_r} libcalendar \
17         libcompat libcurses ${_libdisk} libedit libf2c libftpio \
18         libgnumalloc libipx ${_libkvm} libmd libncurses libopie \
19         libpcap libresolv librpcsvc ${_libscsi} libskey libss \
20         ${_libtcl} ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz
21
22 .if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${BINFORMAT})
23 _csu=csu/${MACHINE_ARCH}-${BINFORMAT}
24 .elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
25 _csu=csu/${MACHINE_ARCH}
26 .endif
27
28 .if !defined(NOLIBC_R)
29 _libc_r=        libc_r
30 .endif
31
32 # Build both libraries. They have different names, so no harm,
33 # and this avoids having stale libscrypt.*
34 .if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
35 _libcrypt=      ../secure/lib/libcrypt libcrypt
36 .else
37 _libcrypt=      libcrypt
38 .endif
39
40 .if ${MACHINE_ARCH} == "i386"
41 _libdisk=       libdisk
42 _libkvm=        libkvm
43 _libscsi=       libscsi
44 _libvgl=        libvgl
45 .endif
46
47 .if !defined(NOTCL) && exists (${.CURDIR}/../contrib/tcl) && \
48     exists(${.CURDIR}/../usr.bin/tclsh) && exists (${.CURDIR}/libtcl)
49 _libtcl=        libtcl
50 .endif
51
52 .if defined(WANT_CSRG_LIBM)
53 _libm=          libm
54 .else
55 _libm=          msun
56 .endif
57
58 .if defined(RELEASEDIR) || !exists(${.CURDIR}/../kerberosIV) || \
59     defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
60 _libtelnet=     libtelnet
61 .endif
62
63 .include <bsd.subdir.mk>