xref: /titanic_50/usr/src/tools/ctf/ctfdiff/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, Version 1.0 only
6*f3e7f55eSRobert Mustacchi# (the "License").  You may not use this file except in compliance
7*f3e7f55eSRobert Mustacchi# with the License.
8*f3e7f55eSRobert Mustacchi#
9*f3e7f55eSRobert Mustacchi# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*f3e7f55eSRobert Mustacchi# or http://www.opensolaris.org/os/licensing.
11*f3e7f55eSRobert Mustacchi# See the License for the specific language governing permissions
12*f3e7f55eSRobert Mustacchi# and limitations under the License.
13*f3e7f55eSRobert Mustacchi#
14*f3e7f55eSRobert Mustacchi# When distributing Covered Code, include this CDDL HEADER in each
15*f3e7f55eSRobert Mustacchi# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*f3e7f55eSRobert Mustacchi# If applicable, add the following below this CDDL HEADER, with the
17*f3e7f55eSRobert Mustacchi# fields enclosed by brackets "[]" replaced with your own identifying
18*f3e7f55eSRobert Mustacchi# information: Portions Copyright [yyyy] [name of copyright owner]
19*f3e7f55eSRobert Mustacchi#
20*f3e7f55eSRobert Mustacchi# CDDL HEADER END
21*f3e7f55eSRobert Mustacchi#
22*f3e7f55eSRobert Mustacchi#
23*f3e7f55eSRobert Mustacchi# Copyright (c) 2001 by Sun Microsystems, Inc.
24*f3e7f55eSRobert Mustacchi# All rights reserved.
25*f3e7f55eSRobert Mustacchi#
26*f3e7f55eSRobert Mustacchi
27*f3e7f55eSRobert Mustacchiinclude		../../Makefile.tools
28*f3e7f55eSRobert Mustacchi
29*f3e7f55eSRobert MustacchiSUBDIRS	= $(MACH)
30*f3e7f55eSRobert Mustacchi
31*f3e7f55eSRobert Mustacchiall	:= TARGET= all
32*f3e7f55eSRobert Mustacchiinstall	:= TARGET= install
33*f3e7f55eSRobert Mustacchiclean	:= TARGET= clean
34*f3e7f55eSRobert Mustacchiclobber	:= TARGET= clobber
35*f3e7f55eSRobert Mustacchilint	:= TARGET= lint
36*f3e7f55eSRobert Mustacchi
37*f3e7f55eSRobert Mustacchi.KEEP_STATE:
38*f3e7f55eSRobert Mustacchi
39*f3e7f55eSRobert Mustacchiinstall all clean clobber lint: $(SUBDIRS)
40*f3e7f55eSRobert Mustacchi
41*f3e7f55eSRobert Mustacchi$(SUBDIRS): FRC
42*f3e7f55eSRobert Mustacchi	@cd $@; pwd; $(MAKE) $(TARGET)
43*f3e7f55eSRobert Mustacchi
44*f3e7f55eSRobert MustacchiFRC:
45