Makefile (e886e3bd22bd97e990b405407d0b3d38eb8e1eeb) Makefile (47acf5563c4978cf4106d49c723d9979bb7746c8)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $Id: Makefile,v 1.80 1998/09/17 03:55:29 gibbs Exp $
2# $Id: Makefile,v 1.81 1998/10/01 14:49:57 jkh 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.
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 and libmd must be built before libskey.
10# libmytinfo must be built before libncurses.
11# libtermcap must be built before libcurses and libedit.
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 and libskey.
12# libmytinfo must be built before libdialog and libncurses.
13# libncurses must be built before libdialog.
14# libtermcap must be built before libcurses, libedit and libreadline.
12#
13# Otherwise, the SUBDIR list should be in alphabetical order.
14
15#
16# Otherwise, the SUBDIR list should be in alphabetical order.
17
15SUBDIR= ${_csu} libcom_err ${_libcrypt} libmytinfo libtermcap \
18SUBDIR= ${_csu} libcom_err ${_libcrypt} ${_libm} libmd libmytinfo \
19 libncurses libtermcap \
16 ${_compat} libalias libatm libbind libc ${_libc_r} libcalendar libcam \
17 libcompat libcurses libdevstat libdisk libedit libf2c libfetch \
20 ${_compat} libalias libatm libbind libc ${_libc_r} libcalendar libcam \
21 libcompat libcurses libdevstat libdisk libedit libf2c libfetch \
18 libftpio libgnumalloc libipx libkvm ${_libm} libmd libncurses libopie \
22 libftpio libgnumalloc libipx libkvm libopie \
19 libpcap libresolv librpcsvc libskey libss libstand \
20 ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz
21
22.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
23_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
24.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
25_csu=csu/${MACHINE_ARCH}
26.endif

--- 30 unchanged lines hidden ---
23 libpcap libresolv librpcsvc libskey libss libstand \
24 ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz
25
26.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
27_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
28.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
29_csu=csu/${MACHINE_ARCH}
30.endif

--- 30 unchanged lines hidden ---