1*6316Seschrock# 2*6316Seschrock# CDDL HEADER START 3*6316Seschrock# 4*6316Seschrock# The contents of this file are subject to the terms of the 5*6316Seschrock# Common Development and Distribution License (the "License"). 6*6316Seschrock# You may not use this file except in compliance with the License. 7*6316Seschrock# 8*6316Seschrock# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*6316Seschrock# or http://www.opensolaris.org/os/licensing. 10*6316Seschrock# See the License for the specific language governing permissions 11*6316Seschrock# and limitations under the License. 12*6316Seschrock# 13*6316Seschrock# When distributing Covered Code, include this CDDL HEADER in each 14*6316Seschrock# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*6316Seschrock# If applicable, add the following below this CDDL HEADER, with the 16*6316Seschrock# fields enclosed by brackets "[]" replaced with your own identifying 17*6316Seschrock# information: Portions Copyright [yyyy] [name of copyright owner] 18*6316Seschrock# 19*6316Seschrock# CDDL HEADER END 20*6316Seschrock# 21*6316Seschrock 22*6316Seschrock# 23*6316Seschrock# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 24*6316Seschrock# Use is subject to license terms. 25*6316Seschrock# 26*6316Seschrock#ident "%Z%%M% %I% %E% SMI" 27*6316Seschrock 28*6316Seschrockinclude $(SRC)/Makefile.master 29*6316Seschrock 30*6316SeschrockSUBDIRS = $(MACH) 31*6316Seschrock$(BUILD64)SUBDIRS += $(MACH64) 32*6316Seschrock 33*6316Seschrockinclude ../../../Makefile.defs 34*6316Seschrock 35*6316SeschrockROOTHDRDIR = $(ROOTPLUGINHDRDIR)/ses/$(PLUGINTYPE) 36*6316SeschrockROOTHDRS = $(HDRS:%=$(ROOTHDRDIR)/%) 37*6316Seschrock 38*6316Seschrockall := TARGET= all 39*6316Seschrockclean := TARGET= clean 40*6316Seschrockclobber := TARGET= clobber 41*6316Seschrockinstall := TARGET= install 42*6316Seschrocklint := TARGET= lint 43*6316Seschrockinstall_h:= TARGET = install_h 44*6316Seschrock 45*6316Seschrock.KEEP_STATE: 46*6316Seschrock 47*6316Seschrockall install clean clobber lint: $(SUBDIRS) 48*6316Seschrock 49*6316Seschrockinstall_h: $(ROOTHDRDIR) $(ROOTHDRS) 50*6316Seschrock 51*6316Seschrockcheck: 52*6316Seschrock 53*6316Seschrock$(SUBDIRS): FRC 54*6316Seschrock @cd $@; pwd; $(MAKE) $(TARGET) 55*6316Seschrock 56*6316SeschrockFRC: 57*6316Seschrock 58*6316Seschrockinclude ../../../Makefile.rootdirs 59*6316Seschrockinclude ../../../../Makefile.targ 60