Deleted Added
full compact
Makefile (110546) Makefile (111204)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 110546 2003-02-08 15:17:49Z phk $
2# $FreeBSD: head/lib/Makefile 111204 2003-02-21 02:30:51Z obrien $
3
4# To satisfy shared library or ELF linkage when only the libraries being
5# built are visible:
6#
7# csu must be built before all shared libaries for ELF.
8# libcom_err must be built before libkrb and libpam.
9# libcrypt must be built before libkrb and libpam.
10# libkvm must be built before libdevstat.

--- 8 unchanged lines hidden (view full) ---

19# libutil must be built before libpam.
20# libypclnt must be built before libpam.
21#
22# Otherwise, the SUBDIR list should be in alphabetical order.
23
24SUBDIR= ${_csu} libcom_err libcrypt libkvm msun libmd \
25 libncurses libradius librpcsvc libsbuf libtacplus libutil libypclnt \
26 ${_compat} libalias libatm ${_libbind} libbz2 libc ${_libc_r} \
3
4# To satisfy shared library or ELF linkage when only the libraries being
5# built are visible:
6#
7# csu must be built before all shared libaries for ELF.
8# libcom_err must be built before libkrb and libpam.
9# libcrypt must be built before libkrb and libpam.
10# libkvm must be built before libdevstat.

--- 8 unchanged lines hidden (view full) ---

19# libutil must be built before libpam.
20# libypclnt must be built before libpam.
21#
22# Otherwise, the SUBDIR list should be in alphabetical order.
23
24SUBDIR= ${_csu} libcom_err libcrypt libkvm msun libmd \
25 libncurses libradius librpcsvc libsbuf libtacplus libutil libypclnt \
26 ${_compat} libalias libatm ${_libbind} libbz2 libc ${_libc_r} \
27 libcalendar libcam libcompat libdevinfo libdevstat libdisk \
27 libcalendar libcam libcompat libdevinfo libdevstat ${_libdisk} \
28 libedit libexpat libfetch libform libftpio libgeom ${_libio} libipsec \
29 libipx libisc libmenu ${_libmilter} ${_libmp} ${_libncp} \
30 libnetgraph libopie libpam libpanel libpcap \
31 ${_libsm} ${_libsmb} ${_libsmdb} ${_libsmutil} \
32 libstand ${_libtelnet} libufs libugidfw libusbhid ${_libvgl} \
33 libwrap libxpg4 liby libz
34
35.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)

--- 26 unchanged lines hidden (view full) ---

62_libvgl= libvgl
63.endif
64
65.if ${MACHINE_ARCH} == "alpha"
66_libio= libio
67_compat= compat
68.endif
69
28 libedit libexpat libfetch libform libftpio libgeom ${_libio} libipsec \
29 libipx libisc libmenu ${_libmilter} ${_libmp} ${_libncp} \
30 libnetgraph libopie libpam libpanel libpcap \
31 ${_libsm} ${_libsmb} ${_libsmdb} ${_libsmutil} \
32 libstand ${_libtelnet} libufs libugidfw libusbhid ${_libvgl} \
33 libwrap libxpg4 liby libz
34
35.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)

--- 26 unchanged lines hidden (view full) ---

62_libvgl= libvgl
63.endif
64
65.if ${MACHINE_ARCH} == "alpha"
66_libio= libio
67_compat= compat
68.endif
69
70.if ${MACHINE_ARCH} != "powerpc"
71_libdisk=libdisk
72.endif
73
70.if defined(RELEASEDIR) || \
71 (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
72 defined(NOCRYPT) || (defined(NOSECURE) && !defined(MAKE_KERBEROS4))
73_libtelnet= libtelnet
74.endif
75
76.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) \
77 && !defined(NOSECURE)
78_libmp= libmp
79.endif
80
81.include <bsd.subdir.mk>
74.if defined(RELEASEDIR) || \
75 (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
76 defined(NOCRYPT) || (defined(NOSECURE) && !defined(MAKE_KERBEROS4))
77_libtelnet= libtelnet
78.endif
79
80.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) \
81 && !defined(NOSECURE)
82_libmp= libmp
83.endif
84
85.include <bsd.subdir.mk>