1*7fd79137SRobert Mustacchi# 2*7fd79137SRobert Mustacchi# CDDL HEADER START 3*7fd79137SRobert Mustacchi# 4*7fd79137SRobert Mustacchi# The contents of this file are subject to the terms of the 5*7fd79137SRobert Mustacchi# Common Development and Distribution License (the "License"). 6*7fd79137SRobert Mustacchi# You may not use this file except in compliance with the License. 7*7fd79137SRobert Mustacchi# 8*7fd79137SRobert Mustacchi# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*7fd79137SRobert Mustacchi# or http://www.opensolaris.org/os/licensing. 10*7fd79137SRobert Mustacchi# See the License for the specific language governing permissions 11*7fd79137SRobert Mustacchi# and limitations under the License. 12*7fd79137SRobert Mustacchi# 13*7fd79137SRobert Mustacchi# When distributing Covered Code, include this CDDL HEADER in each 14*7fd79137SRobert Mustacchi# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*7fd79137SRobert Mustacchi# If applicable, add the following below this CDDL HEADER, with the 16*7fd79137SRobert Mustacchi# fields enclosed by brackets "[]" replaced with your own identifying 17*7fd79137SRobert Mustacchi# information: Portions Copyright [yyyy] [name of copyright owner] 18*7fd79137SRobert Mustacchi# 19*7fd79137SRobert Mustacchi# CDDL HEADER END 20*7fd79137SRobert Mustacchi# 21*7fd79137SRobert Mustacchi# 22*7fd79137SRobert Mustacchi# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23*7fd79137SRobert Mustacchi# Use is subject to license terms. 24*7fd79137SRobert Mustacchi# 25*7fd79137SRobert Mustacchi 26*7fd79137SRobert Mustacchiinclude ../../Makefile.tools 27*7fd79137SRobert Mustacchi 28*7fd79137SRobert MustacchiHDRS = libctf.h 29*7fd79137SRobert MustacchiHDRDIR = common 30*7fd79137SRobert Mustacchi 31*7fd79137SRobert MustacchiSUBDIRS = $(MACH) 32*7fd79137SRobert Mustacchi 33*7fd79137SRobert Mustacchiall := TARGET = all 34*7fd79137SRobert Mustacchiclean := TARGET = clean 35*7fd79137SRobert Mustacchiclobber := TARGET = clobber 36*7fd79137SRobert Mustacchiinstall := TARGET = install 37*7fd79137SRobert Mustacchilint := TARGET = lint 38*7fd79137SRobert Mustacchi 39*7fd79137SRobert Mustacchi.KEEP_STATE: 40*7fd79137SRobert Mustacchi 41*7fd79137SRobert Mustacchiall clean clobber install lint: $(SUBDIRS) 42*7fd79137SRobert Mustacchi 43*7fd79137SRobert Mustacchi$(SUBDIRS): FRC 44*7fd79137SRobert Mustacchi @cd $@; pwd; $(MAKE) $(TARGET) 45*7fd79137SRobert Mustacchi 46*7fd79137SRobert MustacchiFRC: 47