154925bf6Swillf# 254925bf6Swillf# CDDL HEADER START 354925bf6Swillf# 454925bf6Swillf# The contents of this file are subject to the terms of the 554925bf6Swillf# Common Development and Distribution License (the "License"). 654925bf6Swillf# You may not use this file except in compliance with the License. 754925bf6Swillf# 854925bf6Swillf# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 954925bf6Swillf# or http://www.opensolaris.org/os/licensing. 1054925bf6Swillf# See the License for the specific language governing permissions 1154925bf6Swillf# and limitations under the License. 1254925bf6Swillf# 1354925bf6Swillf# When distributing Covered Code, include this CDDL HEADER in each 1454925bf6Swillf# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 1554925bf6Swillf# If applicable, add the following below this CDDL HEADER, with the 1654925bf6Swillf# fields enclosed by brackets "[]" replaced with your own identifying 1754925bf6Swillf# information: Portions Copyright [yyyy] [name of copyright owner] 1854925bf6Swillf# 1954925bf6Swillf# CDDL HEADER END 2054925bf6Swillf# 21*159d09a2SMark Phalan# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 2254925bf6Swillf# Use is subject to license terms. 2354925bf6Swillf# 2454925bf6Swillf# 2554925bf6Swillf# include global definitions 2654925bf6Swillfinclude ../../../Makefile.master 2754925bf6Swillf 2854925bf6Swillf# 2954925bf6Swillf# Build everything in parallel; use .WAIT for dependencies 3054925bf6Swillf.PARALLEL: 3154925bf6Swillf 3254925bf6SwillfSUBDIRS= \ 33*159d09a2SMark Phalan kdb \ 34*159d09a2SMark Phalan preauth 3554925bf6Swillf 3654925bf6Swillfall := TARGET= all 3754925bf6Swillfinstall := TARGET= install 3854925bf6Swillfclean := TARGET= clean 3954925bf6Swillfclobber := TARGET= clobber 4054925bf6Swillflint := TARGET= lint 4154925bf6Swillf_msg := TARGET= _msg 4254925bf6Swillf 4354925bf6Swillf.KEEP_STATE: 4454925bf6Swillf 4554925bf6Swillfall install clean clobber lint _msg: $(SUBDIRS) 4654925bf6Swillf 4754925bf6Swillf$(SUBDIRS): FRC 4854925bf6Swillf @cd $@; pwd; $(MAKE) $(TARGET) 4954925bf6Swillf 5054925bf6SwillfFRC: 51