Deleted Added
full compact
Makefile (70419) Makefile (72309)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 70419 2000-12-28 10:32:02Z peter $
2# $FreeBSD: head/lib/Makefile 72309 2001-02-10 07:07:09Z 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, libpam and libss.
9# libcrypt must be built before libkrb, libpam and libskey.
10# msun must be built before libg++ and libstdc++.

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

26 libftpio libgnumalloc ${_libio} libipsec libipx libisc libkvm libmenu \
27 ${_libncp} \
28 libnetgraph libopie libpam libpanel libpcap \
29 libposix1e libresolv librpcsvc libsmdb libsmutil libss \
30 libstand ${_libtelnet} libusb ${_libvgl} libwrap libxpg4 liby libz
31
32.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
33_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
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# msun must be built before libg++ and libstdc++.

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

26 libftpio libgnumalloc ${_libio} libipsec libipx libisc libkvm libmenu \
27 ${_libncp} \
28 libnetgraph libopie libpam libpanel libpcap \
29 libposix1e libresolv librpcsvc libsmdb libsmutil libss \
30 libstand ${_libtelnet} libusb ${_libvgl} libwrap libxpg4 liby libz
31
32.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
33_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
34.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
34.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
35_csu=csu/${MACHINE_ARCH}
35_csu=csu/${MACHINE_ARCH}
36.else
37_csu=csu
36.endif
37
38.if !defined(NOLIBC_R)
39_libc_r= libc_r
40.endif
41
42.if !defined(NO_BIND)
43_libbind= libbind
44.endif
45
46.if ${MACHINE_ARCH} == "i386"
47_compat= compat
48_libncp= libncp
49_libvgl= libvgl
50.endif
51
52.if ${MACHINE_ARCH} == "alpha"
53_libio= libio
38.endif
39
40.if !defined(NOLIBC_R)
41_libc_r= libc_r
42.endif
43
44.if !defined(NO_BIND)
45_libbind= libbind
46.endif
47
48.if ${MACHINE_ARCH} == "i386"
49_compat= compat
50_libncp= libncp
51_libvgl= libvgl
52.endif
53
54.if ${MACHINE_ARCH} == "alpha"
55_libio= libio
56_compat= compat
54.endif
55
56.if defined(RELEASEDIR) || \
57 (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
58 defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
59_libtelnet= libtelnet
60.endif
61
62.include <bsd.subdir.mk>
57.endif
58
59.if defined(RELEASEDIR) || \
60 (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
61 defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
62_libtelnet= libtelnet
63.endif
64
65.include <bsd.subdir.mk>