usr/src/lib/Makefile
author Cyril Plisko <cyril.plisko@grigale.com>
Fri, 15 Jul 2011 23:48:44 -0700
changeset 86 7cec84c09a67
parent 84 6902ad00c313
child 88 571073f3db6d
permissions -rw-r--r--
Import sfw build 169 Bugs Fixed ---------- 7045290 next on As The Gate Churns - more things move from sfw to userland/foss (Act III) 7053238 ctype_base and codecvt_base destructors should be public 7055596 std::money_base and std::messages_base destructors should be public

#
# 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.106	11/06/15 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 \
	glib	\
	gtk+	\
	gdbm	\
	jaxb	\
	jrexx	\
	junit	\
	trove	\
	fftw2 	\
	javamail \
	libassuan \
	libconfuse \
	libksba \
	libmcrypt \
	libmemcached \
	libnet \
	libpcap \
	libosip2 \
	librsync \
	libxmlrpc-c \
	libyaz \
	memcached-java \
	pywbem \
	qdox \
	sblim \
	imperius \
	openssl \
	openusb \
	perl_net_ssleay \
	saaj \
	sane-backends \
	snack \
	tcltls \
	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)

gtk+: glib
tcltls: openssl
imperius: sblim
jaxb: activation
saaj: activation
wiseman: saaj jaxb
perl_net_ssleay: openssl
qdox: junit
trove: junit


FRC: