Makefile (f8a9708151d8c42c620f2bb5ec74db78e7e1c90f) | Makefile (4b1d654efb3395bc768ed5b034a7b311bea76185) |
---|---|
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 and libpam. --- 26 unchanged lines hidden (view full) --- 35.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf) 36_csu=csu/${MACHINE_ARCH}-elf 37.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile) 38_csu=csu/${MACHINE_ARCH} 39.else 40_csu=csu 41.endif 42 | 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 and libpam. --- 26 unchanged lines hidden (view full) --- 35.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf) 36_csu=csu/${MACHINE_ARCH}-elf 37.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile) 38_csu=csu/${MACHINE_ARCH} 39.else 40_csu=csu 41.endif 42 |
43.if !defined(NOLIBC_R) && ${MACHINE_ARCH} != ia64 | 43.if !defined(NOLIBC_R) |
44_libc_r= libc_r 45.endif 46 47.if !defined(NO_BIND) 48_libbind= libbind 49.endif 50 51.if !defined(NO_SENDMAIL) --- 30 unchanged lines hidden --- | 44_libc_r= libc_r 45.endif 46 47.if !defined(NO_BIND) 48_libbind= libbind 49.endif 50 51.if !defined(NO_SENDMAIL) --- 30 unchanged lines hidden --- |