Makefile (76ed168a7a18d5f3ac34f0a663a8fddb7aac869d) Makefile (b5c8548311ca91f14a5b562832e769e26161df12)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD$
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.

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

19# libsbuf must be built before libcam.
20#
21# Otherwise, the SUBDIR list should be in alphabetical order.
22
23SUBDIR= ${_csu} libcom_err libcrypt libkvm msun libmd \
24 libncurses libradius librpcsvc libtacplus libutil libsbuf \
25 ${_compat} libalias libatm ${_libbind} libbz2 libc ${_libc_r} \
26 libcalendar libcam libcompat libdevinfo libdevstat libdisk \
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD$
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.

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

19# libsbuf must be built before libcam.
20#
21# Otherwise, the SUBDIR list should be in alphabetical order.
22
23SUBDIR= ${_csu} libcom_err libcrypt libkvm msun libmd \
24 libncurses libradius librpcsvc libtacplus libutil libsbuf \
25 ${_compat} libalias libatm ${_libbind} libbz2 libc ${_libc_r} \
26 libcalendar libcam libcompat libdevinfo libdevstat libdisk \
27 libedit libfetch libform libftpio libgnumalloc ${_libio} libipsec \
27 libedit libfetch libform libftpio ${_libgnumalloc} ${_libio} libipsec \
28 libipx libisc libmenu ${_libmp} ${_libncp} \
29 libnetgraph libopie libpam libpanel libpcap \
28 libipx libisc libmenu ${_libmp} ${_libncp} \
29 libnetgraph libopie libpam libpanel libpcap \
30 libresolv libsmdb libsmutil \
30 ${_libresolv} libsmdb libsmutil \
31 libstand ${_libtelnet} libusb ${_libvgl} libwrap libxpg4 liby libz
32
33.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
34_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
35.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
36_csu=csu/${MACHINE_ARCH}
37.else
38_csu=csu
39.endif
40
31 libstand ${_libtelnet} libusb ${_libvgl} libwrap libxpg4 liby libz
32
33.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
34_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
35.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
36_csu=csu/${MACHINE_ARCH}
37.else
38_csu=csu
39.endif
40
41.if !defined(NOLIBC_R)
41.if ${MACHINE_ARCH} == "i386"
42_libgnumalloc= libgnumalloc
43_libresolv= libresolv
44.endif
45
46.if !defined(NOLIBC_R) && ${MACHINE_ARCH} != ia64
42_libc_r= libc_r
43.endif
44
45.if !defined(NO_BIND)
46_libbind= libbind
47.endif
48
49.if ${MACHINE_ARCH} == "i386"

--- 21 unchanged lines hidden ---
47_libc_r= libc_r
48.endif
49
50.if !defined(NO_BIND)
51_libbind= libbind
52.endif
53
54.if ${MACHINE_ARCH} == "i386"

--- 21 unchanged lines hidden ---