Makefile (d788c4fb6565506f1668eac492e001b146d02570) Makefile (c932f886129502cd711f4a2082840245a24c42ca)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $Id: Makefile,v 1.67 1998/05/03 05:06:13 peter Exp $
2# $Id: Makefile,v 1.68 1998/05/13 22:54:03 jb 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.

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

26.endif
27
28.if !defined(NOLIBC_R)
29_libc_r= libc_r
30.endif
31
32# Build both libraries. They have different names, so no harm,
33# and this avoids having stale libscrypt.*
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.

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

26.endif
27
28.if !defined(NOLIBC_R)
29_libc_r= libc_r
30.endif
31
32# Build both libraries. They have different names, so no harm,
33# and this avoids having stale libscrypt.*
34_libcrypt= libcrypt
35.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
34.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
36_libcrypt+= ../secure/lib/libcrypt
35_libcrypt= ../secure/lib/libcrypt libcrypt
36.else
37_libcrypt= libcrypt
37.endif
38
39.if ${MACHINE_ARCH} == "i386"
40_libdisk= libdisk
41_libkvm= libkvm
42_libscsi= libscsi
43_libvgl= libvgl
44.endif

--- 18 unchanged lines hidden ---
38.endif
39
40.if ${MACHINE_ARCH} == "i386"
41_libdisk= libdisk
42_libkvm= libkvm
43_libscsi= libscsi
44_libvgl= libvgl
45.endif

--- 18 unchanged lines hidden ---