Makefile (0bc811877895ae521482c9854988590f4ab31687) | Makefile (7678c8a4fa6a1b4699eea58f5e24e1eaef613432) |
---|---|
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. --- 58 unchanged lines hidden (view full) --- 67_compat= compat 68.endif 69 70.if ${MACHINE_ARCH} != "powerpc" 71_libdisk=libdisk 72.endif 73 74.if defined(RELEASEDIR) || \ | 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. --- 58 unchanged lines hidden (view full) --- 67_compat= compat 68.endif 69 70.if ${MACHINE_ARCH} != "powerpc" 71_libdisk=libdisk 72.endif 73 74.if defined(RELEASEDIR) || \ |
75 (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \ 76 defined(NOCRYPT) || (defined(NOSECURE) && !defined(MAKE_KERBEROS4)) | 75 (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberos5)) || \ 76 defined(NOCRYPT) || \ 77 (defined(NOSECURE) && !defined(MAKE_KERBEROS5)) |
77_libtelnet= libtelnet 78.endif 79 80.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) \ 81 && !defined(NOSECURE) 82_libmp= libmp 83.endif 84 85.include <bsd.subdir.mk> | 78_libtelnet= libtelnet 79.endif 80 81.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) \ 82 && !defined(NOSECURE) 83_libmp= libmp 84.endif 85 86.include <bsd.subdir.mk> |