summaryrefslogtreecommitdiffstats
path: root/lib/Makefile
blob: 86740dfd2a8a24eabbf437f17760c6736f6bcedb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#	@(#)Makefile	8.1 (Berkeley) 6/4/93
#	$Id: Makefile,v 1.76 1998/09/05 12:25:53 asami Exp $

# To satisfy shared library or ELF linkage when only the libraries being
# built are visible:
#
# csu must be built before all shared libaries for ELF.
# libcom_err must be built before libss.
# libcrypt and libmd must be built before libskey.
# libmytinfo must be built before libncurses.
# libtermcap must be built before libcurses and libedit.
#
# Otherwise, the SUBDIR list should be in alphabetical order.

SUBDIR=	${_csu} libcom_err ${_libcrypt} libmytinfo libtermcap \
	${_compat} libalias libbind libc ${_libc_r} libcalendar \
	libcompat libcurses ${_libdisk} libedit libf2c libfetch libftpio \
	libgnumalloc libipx libkvm ${_libm} libmd libncurses libopie \
	libpcap libresolv librpcsvc ${_libscsi} libskey libss libstand \
	${_libtelnet} libutil ${_libvgl} libxpg4 liby libz

.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
_csu=csu/${MACHINE_ARCH}
.endif

.if !defined(NOLIBC_R)
_libc_r=	libc_r
.endif

# Build both libraries. They have different names, so no harm,
# and this avoids having stale libscrypt.*
.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
_libcrypt=	../secure/lib/libcrypt libcrypt
.else
_libcrypt=	libcrypt
.endif

.if ${MACHINE_ARCH} == "i386"
_compat=	compat
_libdisk=	libdisk
_libscsi=	libscsi
_libvgl=	libvgl
.endif

.if defined(WANT_CSRG_LIBM)
_libm=		libm
.else
_libm=		msun
.endif

.if defined(RELEASEDIR) || !exists(${.CURDIR}/../kerberosIV) || \
    defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
_libtelnet=	libtelnet
.endif

.include <bsd.subdir.mk>
OpenPOWER on IntegriCloud