4afa371832
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.
97 lines
2.5 KiB
Makefile
97 lines
2.5 KiB
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $FreeBSD$
|
|
|
|
# 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 libkrb5 and libpam.
|
|
# libcrypt must be built before libkrb5 and libpam.
|
|
# libkvm must be built before libdevstat.
|
|
# msun must be built before libg++ and libstdc++.
|
|
# libmd must be built before libatm, libopie, libradius, and libtacplus.
|
|
# libncurses must be built before libdialog, libedit and libreadline.
|
|
# libopie must be built before libpam.
|
|
# libradius must be built before libpam.
|
|
# librpcsvc must be built before libpam.
|
|
# libsbuf must be built before libcam.
|
|
# libtacplus must be built before libpam.
|
|
# libutil must be built before libpam.
|
|
# libypclnt must be built before libpam.
|
|
#
|
|
# Otherwise, the SUBDIR list should be in alphabetical order.
|
|
|
|
SUBDIR= ${_csu} libcom_err libcrypt libkvm msun libmd \
|
|
libncurses libradius librpcsvc libsbuf libtacplus libutil libypclnt \
|
|
${_compat} libalias libatm ${_libbind} libbz2 libc ${_libc_r} \
|
|
libcalendar libcam libcompat libdevinfo libdevstat ${_libdisk} \
|
|
libedit libexpat libfetch libform libftpio libgeom ${_libio} libipsec \
|
|
libipx libisc libmenu ${_libmilter} ${_libmp} ${_libncp} \
|
|
libnetgraph libopie libpam libpanel libpcap ${_libpthread} \
|
|
${_libsm} ${_libsmb} ${_libsmdb} ${_libsmutil} \
|
|
libstand libtelnet ${_libthr} libufs libugidfw libusbhid \
|
|
${_libvgl} libwrap libxpg4 liby libz
|
|
|
|
.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
|
|
_csu=csu/${MACHINE_ARCH}-elf
|
|
.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
|
|
_csu=csu/${MACHINE_ARCH}
|
|
.else
|
|
_csu=csu
|
|
.endif
|
|
|
|
# libc_r is obsolete on ia64.
|
|
.if ${MACHINE_ARCH} != "ia64"
|
|
.if !defined(NOLIBC_R)
|
|
_libc_r= libc_r
|
|
.endif
|
|
.endif
|
|
|
|
.if !defined(NO_BIND)
|
|
_libbind= libbind
|
|
.endif
|
|
|
|
.if !defined(NO_SENDMAIL)
|
|
_libmilter= libmilter
|
|
_libsm= libsm
|
|
_libsmdb= libsmdb
|
|
_libsmutil= libsmutil
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
_compat= compat
|
|
_libncp= libncp
|
|
_libsmb= libsmb
|
|
_libvgl= libvgl
|
|
.if !defined(NOLIBPTHREAD)
|
|
_libpthread= libpthread
|
|
.endif
|
|
.if !defined(NOLIBTHR)
|
|
_libthr= libthr
|
|
.endif
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "ia64"
|
|
.if !defined(NOLIBPTHREAD)
|
|
_libpthread= libpthread
|
|
.endif
|
|
.if !defined(NOLIBTHR)
|
|
_libthr= libthr
|
|
.endif
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
_libio= libio
|
|
_compat= compat
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} != "powerpc"
|
|
_libdisk= libdisk
|
|
.endif
|
|
|
|
.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
|
|
_libmp= libmp
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|