1f6e214c7SGavin Maltby# 2f6e214c7SGavin Maltby# CDDL HEADER START 3f6e214c7SGavin Maltby# 4f6e214c7SGavin Maltby# The contents of this file are subject to the terms of the 5f6e214c7SGavin Maltby# Common Development and Distribution License (the "License"). 6f6e214c7SGavin Maltby# You may not use this file except in compliance with the License. 7f6e214c7SGavin Maltby# 8f6e214c7SGavin Maltby# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9f6e214c7SGavin Maltby# or http://www.opensolaris.org/os/licensing. 10f6e214c7SGavin Maltby# See the License for the specific language governing permissions 11f6e214c7SGavin Maltby# and limitations under the License. 12f6e214c7SGavin Maltby# 13f6e214c7SGavin Maltby# When distributing Covered Code, include this CDDL HEADER in each 14f6e214c7SGavin Maltby# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15f6e214c7SGavin Maltby# If applicable, add the following below this CDDL HEADER, with the 16f6e214c7SGavin Maltby# fields enclosed by brackets "[]" replaced with your own identifying 17f6e214c7SGavin Maltby# information: Portions Copyright [yyyy] [name of copyright owner] 18f6e214c7SGavin Maltby# 19f6e214c7SGavin Maltby# CDDL HEADER END 20f6e214c7SGavin Maltby# 21f6e214c7SGavin Maltby 22f6e214c7SGavin Maltby# 23f6e214c7SGavin Maltby# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 24f6e214c7SGavin Maltby# 25f6e214c7SGavin Maltby 26f6e214c7SGavin Maltbyinclude ../../Makefile.lib 27f6e214c7SGavin Maltbyinclude ../Makefile.lib 28f6e214c7SGavin Maltby 29f6e214c7SGavin MaltbySUBDIRS = $(MACH) 30f6e214c7SGavin Maltby$(BUILD64)SUBDIRS += $(MACH64) 31f6e214c7SGavin Maltby 32f6e214c7SGavin Maltbyall := TARGET = all 33f6e214c7SGavin Maltbyclean := TARGET = clean 34f6e214c7SGavin Maltbyclobber := TARGET = clobber 35f6e214c7SGavin Maltbyinstall := TARGET = install 36f6e214c7SGavin Maltbytest := TARGET = test 37f6e214c7SGavin Maltby 38f6e214c7SGavin Maltby.KEEP_STATE: 39f6e214c7SGavin Maltby 40*241c90a0SRichard Loweall clean clobber test: $(SUBDIRS) 41f6e214c7SGavin Maltby 42f6e214c7SGavin Maltbyinstall: $(SUBDIRS) 43f6e214c7SGavin Maltby 44f6e214c7SGavin Maltbyinstall_h: 45f6e214c7SGavin Maltby 46f6e214c7SGavin Maltbycheck: $(CHECKHDRS) 47f6e214c7SGavin Maltby 48f6e214c7SGavin Maltby$(SUBDIRS): FRC 49f6e214c7SGavin Maltby @cd $@; pwd; $(MAKE) $(TARGET) 50f6e214c7SGavin Maltby 51f6e214c7SGavin MaltbyFRC: 52f6e214c7SGavin Maltby 53f6e214c7SGavin Maltbyinclude ../../Makefile.targ 54f6e214c7SGavin Maltbyinclude ../Makefile.targ 55