Deleted Added
full compact
Makefile (64567) Makefile (66943)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 64567 2000-08-12 22:39:25Z gshapiro $
2# $FreeBSD: head/lib/Makefile 66943 2000-10-10 18:14:30Z gshapiro $
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++.

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

21
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 \
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++.

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

21
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 ${_libsmdb} libss ${_libsmutil} \
29 libposix1e libresolv librpcsvc libsmdb libss libsmutil \
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})
35_csu=csu/${MACHINE_ARCH}
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
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})
35_csu=csu/${MACHINE_ARCH}
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 !defined(NO_SENDMAIL)
47_libsmdb= libsmdb
48_libsmutil= libsmutil
49.endif
50
51_libcrypt= libcrypt
52.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT) && !defined(NO_DESCRYPT)
53# Build both libraries. They have different names, so no harm,
54# and this avoids having stale libscrypt.*
55_libcrypt+= ../secure/lib/libcrypt
56.endif
57
58.if ${MACHINE_ARCH} == "i386"

--- 16 unchanged lines hidden ---
46_libcrypt= libcrypt
47.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT) && !defined(NO_DESCRYPT)
48# Build both libraries. They have different names, so no harm,
49# and this avoids having stale libscrypt.*
50_libcrypt+= ../secure/lib/libcrypt
51.endif
52
53.if ${MACHINE_ARCH} == "i386"

--- 16 unchanged lines hidden ---