[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib

File: [cvs.NetBSD.org] / src / lib / Makefile (download)

Revision 1.95.4.1, Sun Jun 24 19:43:05 2007 UTC (16 years, 9 months ago) by ghen
Branch: netbsd-3-0
CVS Tags: netbsd-3-0-3-RELEASE
Changes since 1.95: +5 -2 lines

Pull up following revision(s) (requested by pooka in ticket #1804):
	dist/file/: synced with HEAD on 20070615
	distrib/sets/lists/base/shl.elf: revision 1.222
	distrib/sets/lists/base/shl.mi: revision 1.375 via patch
	lib/Makefile: revision 1.108 via patch
	lib/libmagic/Makefile: revision 1.5
	lib/libmagic/config.h: patch
	lib/libmagic/shlib_version: revision 1.3-1.4
	tools/file/Makefile: revision 1.4
	usr.bin/file/Makefile: revision 1.51-1.53
Update file(1) to version 4.21, including security fixes (CVE-2007-1536 and
CVE-2007-2799).

#	$NetBSD: Makefile,v 1.95.4.1 2007/06/24 19:43:05 ghen Exp $
#	from: @(#)Makefile	5.25.1.1 (Berkeley) 5/7/91

.include <bsd.own.mk>

SUBDIR=	csu libc .WAIT libarch libbsdmalloc libbz2 libcompat libcrypt \
	libcurses libedit libevent libform libintl libkvm libl libm \
	libmenu libossaudio libpcap libpci libpmc libposix libpthread \
	libpthread_dbg libradius libresolv librmt librpcsvc librt libterm \
	libusbhid libutil libwrap liby libz

.if (${MKSKEY} != "no")
SUBDIR+= libskey
.endif

# XXX Crypto bits must be done before libtelnet.

.if (${MKCRYPTO} != "no")
# OpenSSL libraries.
SUBDIR+= libcrypto libdes

.if (${MKCRYPTO_IDEA} != "no")
SUBDIR+= libcrypto_idea
.endif	# MKCRYPTO_IDEA != no

.if (${MKCRYPTO_MDC2} != "no")
SUBDIR+= libcrypto_mdc2
.endif	# MKCRYPTO_MDC2 != no

.if (${MKCRYPTO_RC5} != "no")
SUBDIR+= libcrypto_rc5
.endif	# MKCRYPTO_RC5 != no

.endif	# MKCRYPTO != no

.if (${MKKERBEROS} != "no")
# Heimdal Kerberos 5 libraries
SUBDIR+= libroken libvers libcom_err libsl libss libasn1 libhdb \
	 libkadm5srv libkadm5clnt libgssapi libkafs

.if (${MKKERBEROS4} != "no")
# KTH Kerberos 4 libraries
SUBDIR+= libkdb libkadm libkstream
.endif	# MKKERBEROS4 != no
.endif	# MKKERBEROS != no

SUBDIR+=	libtelnet

# IPv6/IPsec
SUBDIR+=	libipsec

# I18N modules
SUBDIR+=	i18n_module


#
# Libraries that depend upon any listed previously
# (and those that depend upon these [and ...])
#
SUBDIR+=	.WAIT
SUBDIR+=	libcdk 

SUBDIR+=	libmagic	# depends on libz

.if (${MKCRYPTO} != "no")
SUBDIR+=	libssl
.endif
.if (${MKKERBEROS} != "no")
SUBDIR+=	libkrb5
.endif
.if (${MKKERBEROS4} != "no")
SUBDIR+=	libkrb
.endif

.if (${MKCRYPTO} != "no")
SUBDIR+=	.WAIT libssh
.endif

.if (${MKPAM} != "no")
SUBDIR+=	.WAIT libpam
.endif

.include <bsd.subdir.mk>