Makefile (c9811e98d61de10ee1aea996340f8830b613cecd) | Makefile (efa3929e79a2b28c120b091e6cd29c6b23dab9f7) |
---|---|
1# @(#)Makefile 8.1 (Berkeley) 6/4/93 2# $Id$ 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. --- 15 unchanged lines hidden (view full) --- 24.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}) 25_csu=csu/${MACHINE_ARCH} 26.endif 27 28.if !defined(NOLIBC_R) 29_libc_r= libc_r 30.endif 31 | 1# @(#)Makefile 8.1 (Berkeley) 6/4/93 2# $Id$ 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. --- 15 unchanged lines hidden (view full) --- 24.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}) 25_csu=csu/${MACHINE_ARCH} 26.endif 27 28.if !defined(NOLIBC_R) 29_libc_r= libc_r 30.endif 31 |
32.if !exists(${.CURDIR}/../secure) || defined(NOSECURE) || defined(NOCRYPT) | 32# Build both libraries. They have different names, so no harm, 33# and this avoids having stale libscrypt.* |
33_libcrypt= libcrypt | 34_libcrypt= libcrypt |
34.else 35_libcrypt= ../secure/lib/libcrypt 36# Releases need both libraries. 37.if defined(RELEASEDIR) 38_libcrypt+= libcrypt | 35.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT) 36_libcrypt+= ../secure/lib/libcrypt |
39.endif | 37.endif |
40.endif | |
41 42.if ${MACHINE_ARCH} == "i386" 43_libdisk= libdisk 44_libkvm= libkvm 45_libscsi= libscsi 46_libvgl= libvgl 47 48.if !defined(NOTCL) && exists (${.CURDIR}/../contrib/tcl) && \ --- 17 unchanged lines hidden --- | 38 39.if ${MACHINE_ARCH} == "i386" 40_libdisk= libdisk 41_libkvm= libkvm 42_libscsi= libscsi 43_libvgl= libvgl 44 45.if !defined(NOTCL) && exists (${.CURDIR}/../contrib/tcl) && \ --- 17 unchanged lines hidden --- |