1994-05-27 07:00:24 +02:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
1999-08-28 02:22:10 +02:00
|
|
|
# $FreeBSD$
|
1998-03-19 17:56:58 +01:00
|
|
|
|
|
|
|
# To satisfy shared library or ELF linkage when only the libraries being
|
|
|
|
# built are visible:
|
|
|
|
#
|
1998-09-02 17:02:18 +02:00
|
|
|
# csu must be built before all shared libaries for ELF.
|
2000-01-16 05:43:11 +01:00
|
|
|
# libcom_err must be built before libkrb, libpam and libss.
|
|
|
|
# libcrypt must be built before libkrb, libpam and libskey.
|
|
|
|
# libm must be built before libg++ and libstdc++.
|
2000-01-21 03:00:53 +01:00
|
|
|
# libmd must be built before libatm, libopie, libradius, libskey, and
|
|
|
|
# libtacplus.
|
1999-09-01 08:21:52 +02:00
|
|
|
# libncurses must be built before libdialog, libedit and libreadline.
|
1998-11-20 03:03:45 +01:00
|
|
|
# libradius must be built before libpam.
|
|
|
|
# libskey must be built before libpam.
|
|
|
|
# libtacplus must be built before libpam.
|
2000-01-16 05:43:11 +01:00
|
|
|
# libutil must be built before libpam.
|
1998-03-19 17:56:58 +01:00
|
|
|
#
|
|
|
|
# Otherwise, the SUBDIR list should be in alphabetical order.
|
|
|
|
|
2000-01-21 03:00:53 +01:00
|
|
|
SUBDIR= ${_csu} libcom_err ${_libcrypt} ${_libm} libmd \
|
2000-01-17 02:32:39 +01:00
|
|
|
libncurses libradius libskey libtacplus libutil \
|
1999-11-30 05:22:25 +01:00
|
|
|
${_compat} libalias libatm ${_libbind} libc ${_libc_r} libcalendar \
|
|
|
|
libcam libcompat libdevstat libdisk libedit libfetch libform \
|
2000-01-06 13:40:54 +01:00
|
|
|
libftpio libgnumalloc ${_libio} libipsec libipx libkvm libmenu \
|
|
|
|
${_libncp} \
|
2000-01-15 20:47:01 +01:00
|
|
|
libnetgraph libopie libpam libpanel libpcap \
|
|
|
|
libposix1e libresolv librpcsvc libss \
|
2000-01-17 02:32:39 +01:00
|
|
|
libstand ${_libtelnet} ${_libvgl} libwrap libxpg4 liby libz
|
1994-05-27 07:00:24 +02:00
|
|
|
|
1998-08-30 03:57:55 +02:00
|
|
|
.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
|
|
|
|
_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
|
1998-03-09 00:24:05 +01:00
|
|
|
.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
|
1998-03-19 17:56:58 +01:00
|
|
|
_csu=csu/${MACHINE_ARCH}
|
1998-01-09 20:46:30 +01:00
|
|
|
.endif
|
|
|
|
|
1998-03-09 00:24:05 +01:00
|
|
|
.if !defined(NOLIBC_R)
|
1998-03-19 17:56:58 +01:00
|
|
|
_libc_r= libc_r
|
1998-03-09 00:24:05 +01:00
|
|
|
.endif
|
1997-04-12 09:06:08 +02:00
|
|
|
|
1999-11-30 07:13:10 +01:00
|
|
|
.if !defined(NO_BIND)
|
1999-11-30 05:22:25 +01:00
|
|
|
_libbind= libbind
|
|
|
|
.endif
|
|
|
|
|
1999-09-01 11:12:16 +02:00
|
|
|
_libcrypt= libcrypt
|
|
|
|
.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
|
1998-03-21 09:18:57 +01:00
|
|
|
# Build both libraries. They have different names, so no harm,
|
|
|
|
# and this avoids having stale libscrypt.*
|
1999-09-01 11:12:16 +02:00
|
|
|
_libcrypt+= ../secure/lib/libcrypt
|
1995-09-29 20:56:05 +01:00
|
|
|
.endif
|
|
|
|
|
1998-03-19 17:56:58 +01:00
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
1998-08-22 16:31:39 +02:00
|
|
|
_compat= compat
|
1999-10-14 08:40:46 +02:00
|
|
|
_libncp= libncp
|
1998-03-19 17:56:58 +01:00
|
|
|
_libvgl= libvgl
|
1998-05-14 00:54:03 +02:00
|
|
|
.endif
|
1998-03-19 17:56:58 +01:00
|
|
|
|
1998-01-10 10:09:24 +01:00
|
|
|
.if defined(WANT_CSRG_LIBM)
|
1998-03-19 17:56:58 +01:00
|
|
|
_libm= libm
|
1994-08-19 12:24:56 +02:00
|
|
|
.else
|
1998-03-19 17:56:58 +01:00
|
|
|
_libm= msun
|
1994-08-19 12:24:56 +02:00
|
|
|
.endif
|
|
|
|
|
1998-12-18 00:02:11 +01:00
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
|
|
_libio= libio
|
|
|
|
.endif
|
|
|
|
|
1999-10-07 22:02:45 +02:00
|
|
|
.if defined(RELEASEDIR) || \
|
|
|
|
(!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
|
1998-03-19 17:56:58 +01:00
|
|
|
defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
|
|
|
|
_libtelnet= libtelnet
|
|
|
|
.endif
|
1996-12-23 06:07:37 +01:00
|
|
|
|
1994-05-27 07:00:24 +02:00
|
|
|
.include <bsd.subdir.mk>
|