Deleted Added
full compact
Makefile (59353) Makefile (59897)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 59353 2000-04-18 06:13:06Z kris $
2# $FreeBSD: head/lib/Makefile 59897 2000-05-02 14:16:19Z joe $
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, libpam and libss.
9# libcrypt must be built before libkrb, libpam and libskey.
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, libpam and libss.
9# libcrypt must be built before libkrb, libpam and libskey.
10# libm must be built before libg++ and libstdc++.
10# msun must be built before libg++ and libstdc++.
11# libmd must be built before libatm, libopie, libradius, libskey, and
12# libtacplus.
13# libncurses must be built before libdialog, libedit and libreadline.
14# libopie must be built before libpam.
15# libradius must be built before libpam.
16# libskey must be built before libpam.
17# libtacplus must be built before libpam.
18# libutil must be built before libpam.
19#
20# Otherwise, the SUBDIR list should be in alphabetical order.
21
11# libmd must be built before libatm, libopie, libradius, libskey, and
12# libtacplus.
13# libncurses must be built before libdialog, libedit and libreadline.
14# libopie must be built before libpam.
15# libradius must be built before libpam.
16# libskey must be built before libpam.
17# libtacplus must be built before libpam.
18# libutil must be built before libpam.
19#
20# Otherwise, the SUBDIR list should be in alphabetical order.
21
22SUBDIR= ${_csu} libcom_err ${_libcrypt} ${_libm} libmd \
22SUBDIR= ${_csu} libcom_err ${_libcrypt} msun libmd \
23 libncurses libradius libskey libtacplus libutil \
24 ${_compat} libalias libatm ${_libbind} libc ${_libc_r} libcalendar \
25 libcam libcompat libdevstat libdisk libedit libfetch libform \
26 libftpio libgnumalloc ${_libio} libipsec libipx libkvm libmenu \
27 ${_libncp} \
28 libnetgraph libopie libpam libpanel libpcap \
29 libposix1e libresolv librpcsvc libss \
30 libstand ${_libtelnet} ${_libvgl} libwrap libxpg4 liby libz

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

51.endif
52
53.if ${MACHINE_ARCH} == "i386"
54_compat= compat
55_libncp= libncp
56_libvgl= libvgl
57.endif
58
23 libncurses libradius libskey libtacplus libutil \
24 ${_compat} libalias libatm ${_libbind} libc ${_libc_r} libcalendar \
25 libcam libcompat libdevstat libdisk libedit libfetch libform \
26 libftpio libgnumalloc ${_libio} libipsec libipx libkvm libmenu \
27 ${_libncp} \
28 libnetgraph libopie libpam libpanel libpcap \
29 libposix1e libresolv librpcsvc libss \
30 libstand ${_libtelnet} ${_libvgl} libwrap libxpg4 liby libz

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

51.endif
52
53.if ${MACHINE_ARCH} == "i386"
54_compat= compat
55_libncp= libncp
56_libvgl= libvgl
57.endif
58
59.if defined(WANT_CSRG_LIBM)
60_libm= libm
61.else
62_libm= msun
63.endif
64
65.if ${MACHINE_ARCH} == "alpha"
66_libio= libio
67.endif
68
69.if defined(RELEASEDIR) || \
70 (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
71 defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
72_libtelnet= libtelnet
73.endif
74
75.include <bsd.subdir.mk>
59.if ${MACHINE_ARCH} == "alpha"
60_libio= libio
61.endif
62
63.if defined(RELEASEDIR) || \
64 (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
65 defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
66_libtelnet= libtelnet
67.endif
68
69.include <bsd.subdir.mk>