Makefile revision 54925bf60766fbb4f1f2d7c843721406a7b7a3fb
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer#
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# CDDL HEADER START
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer#
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# The contents of this file are subject to the terms of the
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# Common Development and Distribution License (the "License").
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# You may not use this file except in compliance with the License.
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer#
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# or http://www.opensolaris.org/os/licensing.
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# See the License for the specific language governing permissions
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# and limitations under the License.
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer#
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# When distributing Covered Code, include this CDDL HEADER in each
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# If applicable, add the following below this CDDL HEADER, with the
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# fields enclosed by brackets "[]" replaced with your own identifying
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# information: Portions Copyright [yyyy] [name of copyright owner]
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer#
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# CDDL HEADER END
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer#
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# Use is subject to license terms.
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer#
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# ident "%Z%%M% %I% %E% SMI"
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer#
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# include global definitions
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremerinclude ../../../../Makefile.master
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer#
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer# Build everything in parallel; use .WAIT for dependencies
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer.PARALLEL:
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer
e4f5a11d4a234623168c1558fcdf4341e11769e1James KremerSUBDIRS= \
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer db2 \
e4f5a11d4a234623168c1558fcdf4341e11769e1James Kremer ldap
all := TARGET= all
install := TARGET= install
clean := TARGET= clean
clobber := TARGET= clobber
lint := TARGET= lint
_msg := TARGET= _msg
.KEEP_STATE:
all install clean clobber lint _msg: $(SUBDIRS)
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
FRC: