Makefile (a7c9f05a712a86a7f1ea73b8d0bde37b16499901) Makefile (bb49f794f5ee647d19e458b23eca844a3a85f813)
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, libpam and libss.

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

38_libc_r= libc_r
39.endif
40
41.if !defined(NO_BIND)
42_libbind= libbind
43.endif
44
45_libcrypt= libcrypt
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, libpam and libss.

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

38_libc_r= libc_r
39.endif
40
41.if !defined(NO_BIND)
42_libbind= libbind
43.endif
44
45_libcrypt= libcrypt
46.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
46.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT) && !defined(NO_DESCRYPT)
47# Build both libraries. They have different names, so no harm,
48# and this avoids having stale libscrypt.*
49_libcrypt+= ../secure/lib/libcrypt
50.endif
51
52.if ${MACHINE_ARCH} == "i386"
53_compat= compat
54_libncp= libncp

--- 20 unchanged lines hidden ---
47# Build both libraries. They have different names, so no harm,
48# and this avoids having stale libscrypt.*
49_libcrypt+= ../secure/lib/libcrypt
50.endif
51
52.if ${MACHINE_ARCH} == "i386"
53_compat= compat
54_libncp= libncp

--- 20 unchanged lines hidden ---