Deleted Added
full compact
Makefile (41233) Makefile (41257)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $Id: Makefile,v 1.83 1998/11/13 01:01:37 jdp Exp $
2# $Id: Makefile,v 1.84 1998/11/18 02:02:27 jdp Exp $
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 libss.
9# libcrypt must be built before libskey.
10# libm must be built before libf2c, libg++ and libstdc++.
11# libmd must be built before libatm, libopie, libradius, libskey,
12# and libtacplus.
13# libmytinfo must be built before libdialog and libncurses.
14# libncurses must be built before libdialog.
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 libss.
9# libcrypt must be built before libskey.
10# libm must be built before libf2c, libg++ and libstdc++.
11# libmd must be built before libatm, libopie, libradius, libskey,
12# and libtacplus.
13# libmytinfo must be built before libdialog and libncurses.
14# libncurses must be built before libdialog.
15# libradius must be built before libpam.
16# libskey must be built before libpam.
17# libtacplus must be built before libpam.
15# libtermcap must be built before libcurses, libedit and libreadline.
18# libtermcap must be built before libcurses, libedit and libreadline.
16# libradius and libtacplus must be built before libpam.
17#
18# Otherwise, the SUBDIR list should be in alphabetical order.
19
20SUBDIR= ${_csu} libcom_err ${_libcrypt} ${_libm} libmd libmytinfo \
19#
20# Otherwise, the SUBDIR list should be in alphabetical order.
21
22SUBDIR= ${_csu} libcom_err ${_libcrypt} ${_libm} libmd libmytinfo \
21 libncurses libtermcap libradius libtacplus \
23 libncurses libtermcap libradius libskey libtacplus \
22 ${_compat} libalias libatm libbind libc ${_libc_r} libcalendar libcam \
23 libcompat libcurses libdevstat libdisk libedit libf2c libfetch \
24 libftpio libgnumalloc libipx libkvm libopie libpam \
24 ${_compat} libalias libatm libbind libc ${_libc_r} libcalendar libcam \
25 libcompat libcurses libdevstat libdisk libedit libf2c libfetch \
26 libftpio libgnumalloc libipx libkvm libopie libpam \
25 libpcap libresolv librpcsvc libskey libss libstand \
27 libpcap libresolv librpcsvc libss libstand \
26 ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz
27
28.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
29_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
30.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
31_csu=csu/${MACHINE_ARCH}
32.endif
33

--- 29 unchanged lines hidden ---
28 ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz
29
30.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
31_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
32.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
33_csu=csu/${MACHINE_ARCH}
34.endif
35

--- 29 unchanged lines hidden ---