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