Makefile (ebb9f0efa8c69ce933e80805ae4fd9b3607d7ef3) | Makefile (de1b32cd37409022ddc245943d048e452502d78f) |
---|---|
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 libkrb5 and libpam. --- 68 unchanged lines hidden (view full) --- 77.if ${MACHINE_ARCH} == "alpha" 78_libio= libio 79_compat= compat 80.endif 81 82.if ${MACHINE_ARCH} == "amd64" 83_libncp= libncp 84_libsmb= libsmb | 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 libkrb5 and libpam. --- 68 unchanged lines hidden (view full) --- 77.if ${MACHINE_ARCH} == "alpha" 78_libio= libio 79_compat= compat 80.endif 81 82.if ${MACHINE_ARCH} == "amd64" 83_libncp= libncp 84_libsmb= libsmb |
85.if !defined(NOLIBPTHREAD) 86_libpthread= libpthread |
|
85.endif | 87.endif |
88.endif |
|
86 87.if ${MACHINE_ARCH} != "amd64" && ${MACHINE_ARCH} != "powerpc" 88.if !defined(NOLIBTHR) 89_libthr= libthr 90.endif 91.endif 92 93.if ${MACHINE_ARCH} != "powerpc" 94_libdisk= libdisk 95.endif 96 97.if !defined(NOCRYPT) && !defined(NO_OPENSSL) 98_libmp= libmp 99.endif 100 101.include <bsd.subdir.mk> | 89 90.if ${MACHINE_ARCH} != "amd64" && ${MACHINE_ARCH} != "powerpc" 91.if !defined(NOLIBTHR) 92_libthr= libthr 93.endif 94.endif 95 96.if ${MACHINE_ARCH} != "powerpc" 97_libdisk= libdisk 98.endif 99 100.if !defined(NOCRYPT) && !defined(NO_OPENSSL) 101_libmp= libmp 102.endif 103 104.include <bsd.subdir.mk> |