xref: /illumos-gate/usr/src/cmd/abi/spectrans/Makefile (revision 55fea89dcaa64928bed4327112404dcb3e07b79f)
1*753d2d2eSraf#
2*753d2d2eSraf# CDDL HEADER START
3*753d2d2eSraf#
4*753d2d2eSraf# The contents of this file are subject to the terms of the
5*753d2d2eSraf# Common Development and Distribution License, Version 1.0 only
6*753d2d2eSraf# (the "License").  You may not use this file except in compliance
7*753d2d2eSraf# with the License.
8*753d2d2eSraf#
9*753d2d2eSraf# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*753d2d2eSraf# or http://www.opensolaris.org/os/licensing.
11*753d2d2eSraf# See the License for the specific language governing permissions
12*753d2d2eSraf# and limitations under the License.
13*753d2d2eSraf#
14*753d2d2eSraf# When distributing Covered Code, include this CDDL HEADER in each
15*753d2d2eSraf# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*753d2d2eSraf# If applicable, add the following below this CDDL HEADER, with the
17*753d2d2eSraf# fields enclosed by brackets "[]" replaced with your own identifying
18*753d2d2eSraf# information: Portions Copyright [yyyy] [name of copyright owner]
19*753d2d2eSraf#
20*753d2d2eSraf# CDDL HEADER END
21*753d2d2eSraf#
22*753d2d2eSraf#
23*753d2d2eSraf#ident	"%Z%%M%	%I%	%E% SMI"
24*753d2d2eSraf#
25*753d2d2eSraf# Copyright 1996,1998-1999,2002 Sun Microsystems, Inc.  All rights reserved.
26*753d2d2eSraf# Use is subject to license terms.
27*753d2d2eSraf#
28*753d2d2eSraf# cmd/abi/spectrans/Makefile
29*753d2d2eSraf
30*753d2d2eSraf.KEEP_STATE:
31*753d2d2eSraf
32*753d2d2eSrafSUBDIRS	= parser spec2map spec2trace
33*753d2d2eSraf
34*753d2d2eSrafall		:=	TARGET= all
35*753d2d2eSrafinstall		:=	TARGET= install
36*753d2d2eSrafclean		:=	TARGET= clean
37*753d2d2eSrafclobber		:=	TARGET= clobber
38*753d2d2eSraflint		:=	TARGET= lint
39*753d2d2eSraf
40*753d2d2eSrafall install clean clobber lint: $(SUBDIRS)
41*753d2d2eSraf
42*753d2d2eSraf_msg: # No messages for these tools
43*753d2d2eSraf
44*753d2d2eSraf$(SUBDIRS): FRC
45*753d2d2eSraf	@cd $@; pwd; $(MAKE) $(TARGET)
46*753d2d2eSraf
47*753d2d2eSrafFRC:
48