1994-05-27 05:00:24 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
1998-03-19 16:56:58 +00:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
# To satisfy shared library or ELF linkage when only the libraries being
|
|
|
|
# built are visible:
|
|
|
|
#
|
|
|
|
# libcom_err must be built before libss.
|
|
|
|
# libcrypt and libmd must be built before libskey.
|
|
|
|
# libm must be built before libtcl.
|
|
|
|
# libmytinfo must be built before libncurses.
|
|
|
|
# libtermcap must be built before libcurses and libedit.
|
|
|
|
#
|
|
|
|
# Otherwise, the SUBDIR list should be in alphabetical order.
|
|
|
|
|
|
|
|
SUBDIR= libcom_err ${_libcrypt} ${_libm} libmytinfo libtermcap \
|
|
|
|
compat ${_csu} libalias libc ${_libc_r} libcalendar \
|
|
|
|
libcompat libcurses ${_libdisk} libedit libf2c libftpio \
|
|
|
|
libgnumalloc libipx ${_libkvm} libmd libncurses libopie \
|
|
|
|
libpcap libresolv librpcsvc ${_libscsi} libskey libss \
|
|
|
|
${_libtcl} ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz
|
1994-05-27 05:00:24 +00:00
|
|
|
|
1998-03-08 23:24:05 +00:00
|
|
|
.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${BINFORMAT})
|
1998-03-19 16:56:58 +00:00
|
|
|
_csu=csu/${MACHINE_ARCH}-${BINFORMAT}
|
1998-03-08 23:24:05 +00:00
|
|
|
.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
|
1998-03-19 16:56:58 +00:00
|
|
|
_csu=csu/${MACHINE_ARCH}
|
1998-01-09 19:46:30 +00:00
|
|
|
.endif
|
|
|
|
|
1998-03-08 23:24:05 +00:00
|
|
|
.if !defined(NOLIBC_R)
|
1998-03-19 16:56:58 +00:00
|
|
|
_libc_r= libc_r
|
1998-03-08 23:24:05 +00:00
|
|
|
.endif
|
1997-04-12 07:06:08 +00:00
|
|
|
|
1996-12-11 10:02:29 +00:00
|
|
|
.if !exists(${.CURDIR}/../secure) || defined(NOSECURE) || defined(NOCRYPT)
|
1998-03-19 16:56:58 +00:00
|
|
|
_libcrypt= libcrypt
|
1995-09-29 19:56:05 +00:00
|
|
|
.else
|
1998-03-19 16:56:58 +00:00
|
|
|
_libcrypt= ../secure/lib/libcrypt
|
|
|
|
# Releases need both libraries.
|
1996-01-24 21:32:46 +00:00
|
|
|
.if defined(RELEASEDIR)
|
1998-03-19 16:56:58 +00:00
|
|
|
_libcrypt+= libcrypt
|
1996-01-24 21:32:46 +00:00
|
|
|
.endif
|
1995-09-29 19:56:05 +00:00
|
|
|
.endif
|
|
|
|
|
1998-03-19 16:56:58 +00:00
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
|
|
_libdisk= libdisk
|
|
|
|
_libkvm= libkvm
|
|
|
|
_libscsi= libscsi
|
|
|
|
_libvgl= libvgl
|
|
|
|
|
|
|
|
.if !defined(NOTCL) && exists (${.CURDIR}/../contrib/tcl) && \
|
|
|
|
exists(${.CURDIR}/../usr.bin/tclsh) && exists (${.CURDIR}/libtcl)
|
|
|
|
_libtcl= libtcl
|
|
|
|
.endif
|
1996-02-13 09:17:42 +00:00
|
|
|
.endif
|
1994-08-25 13:39:18 +00:00
|
|
|
|
1998-01-10 09:09:24 +00:00
|
|
|
.if defined(WANT_CSRG_LIBM)
|
1998-03-19 16:56:58 +00:00
|
|
|
_libm= libm
|
1994-08-19 10:24:56 +00:00
|
|
|
.else
|
1998-03-19 16:56:58 +00:00
|
|
|
_libm= msun
|
1994-08-19 10:24:56 +00:00
|
|
|
.endif
|
|
|
|
|
1998-03-19 16:56:58 +00:00
|
|
|
.if defined(RELEASEDIR) || !exists(${.CURDIR}/../kerberosIV) || \
|
|
|
|
defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
|
|
|
|
_libtelnet= libtelnet
|
|
|
|
.endif
|
1996-12-23 05:07:37 +00:00
|
|
|
|
1994-05-27 05:00:24 +00:00
|
|
|
.include <bsd.subdir.mk>
|