1994-05-27 05:00:24 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1998-03-19 16:56:58 +00:00
|
|
|
|
|
|
|
# To satisfy shared library or ELF linkage when only the libraries being
|
|
|
|
# built are visible:
|
|
|
|
#
|
1998-09-02 15:02:18 +00:00
|
|
|
# csu must be built before all shared libaries for ELF.
|
Very big makeover in the way telnet, telnetd and libtelnet are built.
Previously, there were two copies of telnet; a non-crypto version
that lived in the usual places, and a crypto version that lived in
crypto/telnet/. The latter was built in a broken manner somewhat akin
to other "contribified" sources. This meant that there were 4 telnets
competing with each other at build time - KerberosIV, Kerberos5,
plain-old-secure and base. KerberosIV is no longer in the running, but
the other three took it in turns to jump all over each other during a
"make buildworld".
As the crypto issue has been clarified, and crypto _calls_ are not
a problem, crypto/telnet has been repo-copied to contrib/telnet,
and with this commit, all telnets are now "contribified". The contrib
path was chosen to not destroy history in the repository, and differs
from other contrib/ entries in that it may be worked on as "normal"
BSD code. There is no dangerous crypto in these sources, only a
very weak system less strong than enigma(1).
Kerberos5 telnet and Secure telnet are now selected by using the usual
macros in /etc/make.conf, and the build process is unsurprising and
less treacherous.
2003-07-16 20:59:15 +00:00
|
|
|
# libcom_err must be built before libkrb5 and libpam.
|
|
|
|
# libcrypt must be built before libkrb5 and libpam.
|
2001-08-04 18:25:48 +00:00
|
|
|
# libkvm must be built before libdevstat.
|
2000-05-02 14:16:19 +00:00
|
|
|
# msun must be built before libg++ and libstdc++.
|
2001-07-09 17:52:34 +00:00
|
|
|
# libmd must be built before libatm, libopie, libradius, and libtacplus.
|
1999-09-01 06:21:52 +00:00
|
|
|
# libncurses must be built before libdialog, libedit and libreadline.
|
2003-11-12 17:09:13 +00:00
|
|
|
# libnetgraph must be built before libbsnmp/modules/snmp_netgraph.
|
2000-04-18 06:13:06 +00:00
|
|
|
# libopie must be built before libpam.
|
1998-11-20 02:03:45 +00:00
|
|
|
# libradius must be built before libpam.
|
2001-08-26 17:49:51 +00:00
|
|
|
# librpcsvc must be built before libpam.
|
2002-04-14 22:27:12 +00:00
|
|
|
# libsbuf must be built before libcam.
|
1998-11-20 02:03:45 +00:00
|
|
|
# libtacplus must be built before libpam.
|
2000-01-16 04:43:11 +00:00
|
|
|
# libutil must be built before libpam.
|
2002-04-14 22:27:12 +00:00
|
|
|
# libypclnt must be built before libpam.
|
1998-03-19 16:56:58 +00:00
|
|
|
#
|
|
|
|
# Otherwise, the SUBDIR list should be in alphabetical order.
|
|
|
|
|
2003-11-12 17:09:13 +00:00
|
|
|
SUBDIR= ${_csu} libcom_err libcrypt libkvm msun libmd libncurses \
|
2004-03-10 08:58:06 +00:00
|
|
|
libnetgraph libradius librpcsvc libsbuf libtacplus libutil \
|
2004-09-21 19:01:48 +00:00
|
|
|
${_libypclnt} libalias libarchive ${_libatm} \
|
2004-09-24 22:10:34 +00:00
|
|
|
libbegemot ${_libbluetooth} libbsnmp libbz2 libc ${_libc_r} \
|
2004-05-14 13:45:56 +00:00
|
|
|
libcalendar libcam libcompat libdevinfo libdevstat ${_libdisk} \
|
2003-02-08 15:17:49 +00:00
|
|
|
libedit libexpat libfetch libform libftpio libgeom ${_libio} libipsec \
|
2004-09-21 19:01:48 +00:00
|
|
|
libipx libkiconv libmagic libmenu ${_libmilter} ${_libmp} \
|
2004-11-10 22:16:37 +00:00
|
|
|
${_libncp} ${_libngatm} libopie libpam libpanel libpcap \
|
2003-10-22 15:01:16 +00:00
|
|
|
${_libpthread} ${_libsdp} ${_libsm} ${_libsmb} ${_libsmdb} \
|
2004-07-18 04:36:22 +00:00
|
|
|
${_libsmutil} libstand libtelnet ${_libthr} ${_libthread_db} libufs \
|
2004-09-21 19:01:48 +00:00
|
|
|
libugidfw ${_libusbhid} ${_libvgl} libwrap libxpg4 liby libz ${_bind}
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2002-09-17 01:49:00 +00:00
|
|
|
.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
|
|
|
|
_csu=csu/${MACHINE_ARCH}-elf
|
2001-02-10 07:07:09 +00:00
|
|
|
.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
|
1998-03-19 16:56:58 +00:00
|
|
|
_csu=csu/${MACHINE_ARCH}
|
2001-02-10 07:07:09 +00:00
|
|
|
.else
|
|
|
|
_csu=csu
|
1998-01-09 19:46:30 +00:00
|
|
|
.endif
|
|
|
|
|
2003-08-27 20:00:48 +00:00
|
|
|
.if !defined(NOATM)
|
|
|
|
_libatm= libatm
|
2003-10-22 15:01:16 +00:00
|
|
|
_libngatm= libngatm
|
2003-08-27 20:00:48 +00:00
|
|
|
.endif
|
|
|
|
|
1999-11-30 06:13:10 +00:00
|
|
|
.if !defined(NO_BIND)
|
2004-09-21 19:01:48 +00:00
|
|
|
_bind= bind
|
1999-11-30 04:22:25 +00:00
|
|
|
.endif
|
|
|
|
|
2004-01-28 00:42:51 +00:00
|
|
|
.if !defined(NO_BLUETOOTH)
|
2003-10-12 22:04:24 +00:00
|
|
|
_libbluetooth= libbluetooth
|
|
|
|
_libsdp= libsdp
|
2004-01-28 00:42:51 +00:00
|
|
|
.endif
|
2004-07-07 22:48:30 +00:00
|
|
|
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
2004-01-28 00:42:51 +00:00
|
|
|
_libncp= libncp
|
2001-12-14 23:11:45 +00:00
|
|
|
_libsmb= libsmb
|
1998-03-19 16:56:58 +00:00
|
|
|
_libvgl= libvgl
|
2003-06-01 00:32:21 +00:00
|
|
|
.endif
|
|
|
|
|
2004-05-14 19:52:35 +00:00
|
|
|
.if ${MACHINE_ARCH} != "arm" && ${MACHINE_ARCH} != "ia64" && \
|
|
|
|
${MACHINE_ARCH} != "powerpc" && !defined(NOLIBC_R)
|
2004-05-14 19:31:20 +00:00
|
|
|
_libc_r= libc_r
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MACHINE_ARCH} != "arm"
|
|
|
|
_libdisk= libdisk
|
|
|
|
.endif
|
|
|
|
|
1998-12-17 23:02:11 +00:00
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
|
|
_libio= libio
|
|
|
|
.endif
|
|
|
|
|
2004-05-14 19:31:20 +00:00
|
|
|
.if !defined(NO_SENDMAIL)
|
|
|
|
_libmilter= libmilter
|
|
|
|
_libsm= libsm
|
|
|
|
_libsmdb= libsmdb
|
|
|
|
_libsmutil= libsmutil
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
|
|
|
|
_libmp= libmp
|
|
|
|
.endif
|
|
|
|
|
2003-07-24 02:05:48 +00:00
|
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
|
|
_libncp= libncp
|
|
|
|
_libsmb= libsmb
|
2003-08-09 15:29:52 +00:00
|
|
|
.endif
|
|
|
|
|
2004-07-19 12:20:10 +00:00
|
|
|
.if !defined(NOLIBPTHREAD)
|
2003-08-08 21:16:06 +00:00
|
|
|
_libpthread= libpthread
|
|
|
|
.endif
|
2003-07-24 02:05:48 +00:00
|
|
|
|
2004-08-19 23:51:42 +00:00
|
|
|
.if ${MACHINE_ARCH} != "arm" && !defined(NOLIBTHR)
|
2003-07-20 01:34:40 +00:00
|
|
|
_libthr= libthr
|
|
|
|
.endif
|
|
|
|
|
2004-07-18 04:36:22 +00:00
|
|
|
.if ${MACHINE_ARCH} != "arm" && ${MACHINE_ARCH} != "powerpc"
|
|
|
|
_libthread_db= libthread_db
|
|
|
|
.endif
|
|
|
|
|
2004-05-14 19:31:20 +00:00
|
|
|
.if !defined(NO_USB)
|
|
|
|
_libusbhid= libusbhid
|
2001-08-02 15:47:03 +00:00
|
|
|
.endif
|
|
|
|
|
2004-03-10 08:58:06 +00:00
|
|
|
.if !defined(NO_YP_LIBC)
|
|
|
|
_libypclnt= libypclnt
|
|
|
|
.endif
|
|
|
|
|
1994-05-27 05:00:24 +00:00
|
|
|
.include <bsd.subdir.mk>
|