NetBSD/lib/Makefile

108 lines
2.6 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.149 2010/02/03 15:34:40 roy Exp $
1993-08-01 09:37:30 +04:00
# from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91
1993-03-21 12:45:37 +03:00
.include <bsd.own.mk>
SUBDIR= csu libc .WAIT libarch \
libbsdmalloc libbluetooth libbz2 \
libcompat libcrypt \
libintl libkvm libm \
2008-03-12 03:21:29 +03:00
libossaudio libpcap libpci libpmc libposix libprop libpthread \
libpthread_dbg libpuffs libresolv librmt librpcsvc librt \
libterminfo libusbhid libutil libwrap liby libz
2009-10-27 00:36:46 +03:00
SUBDIR+=../external/bsd/flex/lib
2009-10-26 04:18:46 +03:00
# libcurses needs libtermlib
SUBDIR+= .WAIT libcurses
2008-03-12 03:21:29 +03:00
# libform and libmenu need libcurses
SUBDIR+= .WAIT libform libmenu
.if (${MKSKEY} != "no")
SUBDIR+= libskey
.endif
# XXX Crypto bits must be done before libtelnet.
.if (${MKCRYPTO} != "no")
2009-07-20 03:35:02 +04:00
SUBDIR+= ../crypto/external/bsd/openssl/lib
.endif # MKCRYPTO != no
1993-03-21 12:45:37 +03:00
.if (${MKKERBEROS} != "no")
# Heimdal Kerberos 5 libraries
SUBDIR+= .WAIT libroken libvers libcom_err .WAIT libasn1
2008-03-22 11:36:48 +03:00
SUBDIR+= .WAIT libhx509
.endif # MKKERBEROS != no
1999-07-13 02:04:09 +04:00
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 ...])
#
#==================== 1st library dependency barrier ====================
SUBDIR+= .WAIT
SUBDIR+= libedit # depends on libterm
SUBDIR+= libradius # depends on libcrypto - only if ${MKCRYPTO}
.if (${MKKERBEROS} != "no")
SUBDIR+= libkrb5 # depends on libcrypto and more
.endif
SUBDIR+= librefuse # depends on libpuffs
SUBDIR+= librumpuser # depends on libpthread
.if (${MKCRYPTO} != "no")
# these depend on libcrypto*, libz and libbz2
SUBDIR+= ../crypto/external/bsd/openssh/lib
SUBDIR+= ../crypto/external/bsd/netpgp/lib
.endif
#==================== 2nd library dependency barrier ====================
SUBDIR+= .WAIT
.if (${MKKERBEROS} != "no")
# Heimdal Kerberos 5 libraries depending on libkrb5 and more
2008-03-22 11:36:48 +03:00
SUBDIR+= libheimntlm
SUBDIR+= .WAIT libgssapi libhdb
SUBDIR+= .WAIT libkadm5srv libkadm5clnt libkafs libsl libss
.endif
SUBDIR+= librump # depends on librumpuser
#==================== 3rd library dependency barrier ====================
SUBDIR+= .WAIT
.if (${MKPAM} != "no")
SUBDIR+= libpam # depends on libkrb5, libkafs and more
.endif
.if (${MKCRYPTO} != "no")
SUBDIR+= librumpcrypto # depends on librump
.endif
SUBDIR+= librumpdev # depends on librump
2008-10-16 13:44:12 +04:00
SUBDIR+= librumpnet # depends on librump
SUBDIR+= librumpvfs # depends on librump
#==================== 4th library dependency barrier ====================
SUBDIR+= .WAIT
2008-11-27 19:14:46 +03:00
SUBDIR+= libukfs # depends on librump and librumpvfs
#==================== 5th library dependency barrier ====================
SUBDIR+= .WAIT
SUBDIR+= libp2k # depends on libpuffs, librumpvfs and libukfs
1993-03-21 12:45:37 +03:00
.include <bsd.subdir.mk>