Deleted Added
full compact
Makefile (38454) Makefile (38477)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $Id: Makefile,v 1.71 1998/08/17 09:32:07 des Exp $
2# $Id: Makefile,v 1.72 1998/08/20 08:24:07 msmith Exp $
3
4# To satisfy shared library or ELF linkage when only the libraries being
5# built are visible:
6#
7# libcom_err must be built before libss.
8# libcrypt and libmd must be built before libskey.
9# libm must be built before libtcl.
10# libmytinfo must be built before libncurses.
11# libtermcap must be built before libcurses and libedit.
12#
13# Otherwise, the SUBDIR list should be in alphabetical order.
14
15SUBDIR= libcom_err ${_libcrypt} ${_libm} libmytinfo libtermcap \
3
4# To satisfy shared library or ELF linkage when only the libraries being
5# built are visible:
6#
7# libcom_err must be built before libss.
8# libcrypt and libmd must be built before libskey.
9# libm must be built before libtcl.
10# libmytinfo must be built before libncurses.
11# libtermcap must be built before libcurses and libedit.
12#
13# Otherwise, the SUBDIR list should be in alphabetical order.
14
15SUBDIR= libcom_err ${_libcrypt} ${_libm} libmytinfo libtermcap \
16 compat ${_csu} libalias libbind libc ${_libc_r} libcalendar \
16 ${_compat} ${_csu} libalias libbind libc ${_libc_r} libcalendar \
17 libcompat libcurses ${_libdisk} libedit libf2c libfetch libftpio \
18 libgnumalloc libipx libkvm libmd libncurses libopie \
19 libpcap libresolv librpcsvc ${_libscsi} libskey libss libstand \
20 ${_libtcl} ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz
21
22.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${BINFORMAT})
23_csu=csu/${MACHINE_ARCH}-${BINFORMAT}
24.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})

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

33# and this avoids having stale libscrypt.*
34.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
35_libcrypt= ../secure/lib/libcrypt libcrypt
36.else
37_libcrypt= libcrypt
38.endif
39
40.if ${MACHINE_ARCH} == "i386"
17 libcompat libcurses ${_libdisk} libedit libf2c libfetch libftpio \
18 libgnumalloc libipx libkvm libmd libncurses libopie \
19 libpcap libresolv librpcsvc ${_libscsi} libskey libss libstand \
20 ${_libtcl} ${_libtelnet} libutil ${_libvgl} libxpg4 liby libz
21
22.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${BINFORMAT})
23_csu=csu/${MACHINE_ARCH}-${BINFORMAT}
24.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})

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

33# and this avoids having stale libscrypt.*
34.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
35_libcrypt= ../secure/lib/libcrypt libcrypt
36.else
37_libcrypt= libcrypt
38.endif
39
40.if ${MACHINE_ARCH} == "i386"
41_compat= compat
41_libdisk= libdisk
42_libscsi= libscsi
43_libvgl= libvgl
44.endif
45
46.if !defined(NOTCL) && exists (${.CURDIR}/../contrib/tcl) && \
47 exists(${.CURDIR}/../usr.bin/tclsh) && exists (${.CURDIR}/libtcl)
48_libtcl= libtcl

--- 14 unchanged lines hidden ---
42_libdisk= libdisk
43_libscsi= libscsi
44_libvgl= libvgl
45.endif
46
47.if !defined(NOTCL) && exists (${.CURDIR}/../contrib/tcl) && \
48 exists(${.CURDIR}/../usr.bin/tclsh) && exists (${.CURDIR}/libtcl)
49_libtcl= libtcl

--- 14 unchanged lines hidden ---