usr/src/lib/Makefile
author Cyril Plisko <cyril.plisko@grigale.com>
Sat, 23 Apr 2011 12:08:45 -0700
changeset 74 fd34810c2c84
parent 72 82bde2a81435
child 76 276c1f9233b3
permissions -rw-r--r--
Import sfw build 163 Bugs Fixed ---------- 6818324 zebra should be able to be launched with --retain option 6829723 quagga build waits for user input 6850303 webmin no longer needs to deliver its own private copy of Net::SSLeay 6996979 SFW needs to finish migration to Python 2.6 7013569 quagga: bgpd: missing privilege "proc_fork" 7014295 quagga make targets in the wrong places. 7020999 CVE-2011-0719 Samba is vulnerable to DoS by memory corruption 7022250 Typo in quagga start method. 7022259 ripngd rejects short form for --retain option 7022721 quagga tries to install common/rbac/exec_attr 7027870 need to fix rbac entries in sfw for PSARC/2010/357 7027911 remove yet more things from sfw

#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#

#
# Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
#
# ident	"@(#)Makefile	1.99	11/03/22 SMI"
#

#
# lib/Makefile
#

# include global definitions
include ../Makefile.master

#
# Certain libraries are linked with, hence depend on, other libraries.
#
# Although we have historically used .WAIT to express dependencies, it
# reduces the amount of parallelism and thus lengthens the time it
# takes to build the libraries.  Thus, we now require that any new
# libraries explicitly call out their dependencies.
#
# Aside from explicit dependencies all libraries are built in parallel.
#
.PARALLEL:

COMMON_SUBDIRS= \
	stdcxx4  \
	aalib   \
	activation \
	antlr2	\
	commons-collections	\
	glib	\
	gtk+	\
	gdbm	\
	gnump	\
	idn 	\
	ilmbase \
	pcre	\
	curl	\
	jaxb	\
	jrexx	\
	junit	\
	tcl	\
	trove	\
	tk	\
	zlib	\
	fftw2 	\
	fftw3	\
	javamail \
	libassuan \
	libconfuse \
	libxml2 \
	libxslt \
	libexpat \
	libksba \
	libusb \
	libusbugen \
	lcms \
	libevent \
	libmcrypt \
	libmemcached \
	libmng \
	libnet \
	libpcap \
	libosip2 \
	librsync \
	libsndfile \
	libtorrent \
	libxmlrpc-c \
	libyaz \
	memcached \
	memcached-java \
	mozldap \
	mpfr \
	pmdbi \
	pth \
	pywbem \
	qdox \
	slang \
	tidy \
	wxwidgets \
	sblim \
	imperius \
	slib \
	openexr \
	openssl \
	openusb \
	pam_pkcs11 \
	perl_net_ssleay \
	saaj \
	sane-backends \
	snack \
	tcltls \
	trousers \
	unixodbc \
	wiseman

sparc_SUBDIRS= 

i386_SUBDIRS=

SUBDIRS= $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)

all :=		TARGET= all
install :=	TARGET= install
install_h :=	TARGET= install_h
clean :=	TARGET= clean
clobber :=	TARGET= clobber
lint :=		TARGET= lint
meta-check :=		TARGET= meta-check
component-hook :=	TARGET= component-hook

install_h all install clean clobber meta-check component-hook: $(SUBDIRS)

$(SUBDIRS): FRC
	@cd $@; echo "$(TARGET) \c"; pwd; $(MAKE) $(MAKEFILE) $(TARGET)

tk: tcl
gtk+: glib tk
libxslt: libxml2
libusbugen: libusb
curl: openssl zlib idn
libxmlrpc-c: curl
memcached: libevent
lcms: zlib
libmng: lcms
mpfr: gnump
slang: pcre zlib
snack: tcl tk
tcltls: openssl tcl
openexr: ilmbase
imperius: antlr2 sblim
jaxb: activation
saaj: activation
wiseman: saaj jaxb
trousers: openssl
pam_pkcs11: openssl
perl_net_ssleay: openssl
qdox: junit
trove: junit
libassuan: pth


FRC: