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