1159d09a2SMark Phalan# 2159d09a2SMark Phalan# CDDL HEADER START 3159d09a2SMark Phalan# 4159d09a2SMark Phalan# The contents of this file are subject to the terms of the 5159d09a2SMark Phalan# Common Development and Distribution License (the "License"). 6159d09a2SMark Phalan# You may not use this file except in compliance with the License. 7159d09a2SMark Phalan# 8159d09a2SMark Phalan# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9159d09a2SMark Phalan# or http://www.opensolaris.org/os/licensing. 10159d09a2SMark Phalan# See the License for the specific language governing permissions 11159d09a2SMark Phalan# and limitations under the License. 12159d09a2SMark Phalan# 13159d09a2SMark Phalan# When distributing Covered Code, include this CDDL HEADER in each 14159d09a2SMark Phalan# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15159d09a2SMark Phalan# If applicable, add the following below this CDDL HEADER, with the 16159d09a2SMark Phalan# fields enclosed by brackets "[]" replaced with your own identifying 17159d09a2SMark Phalan# information: Portions Copyright [yyyy] [name of copyright owner] 18159d09a2SMark Phalan# 19159d09a2SMark Phalan# CDDL HEADER END 20159d09a2SMark Phalan# 21159d09a2SMark Phalan# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 22159d09a2SMark Phalan# Use is subject to license terms. 23159d09a2SMark Phalan# 24159d09a2SMark Phalan# 25159d09a2SMark Phalan# include global definitions 26159d09a2SMark Phalaninclude ../../../../Makefile.master 27159d09a2SMark Phalan 28159d09a2SMark Phalan# 29159d09a2SMark Phalan# Build everything in parallel; use .WAIT for dependencies 30159d09a2SMark Phalan.PARALLEL: 31159d09a2SMark Phalan 32159d09a2SMark PhalanSUBDIRS= \ 33159d09a2SMark Phalan pkinit 34159d09a2SMark Phalan 35159d09a2SMark Phalanall := TARGET= all 36159d09a2SMark Phalaninstall := TARGET= install 37159d09a2SMark Phalanclean := TARGET= clean 38159d09a2SMark Phalanclobber := TARGET= clobber 39159d09a2SMark Phalan_msg := TARGET= _msg 40159d09a2SMark Phalan 41159d09a2SMark Phalan.KEEP_STATE: 42159d09a2SMark Phalan 43*241c90a0SRichard Loweall install clean clobber _msg: $(SUBDIRS) 44159d09a2SMark Phalan 45159d09a2SMark Phalan$(SUBDIRS): FRC 46159d09a2SMark Phalan @cd $@; pwd; $(MAKE) $(TARGET) 47159d09a2SMark Phalan 48159d09a2SMark PhalanFRC: 49