Makefile revision 0173c38a73f34277e0c97a19fedfd25d81ba8380
d5b7ba26785d7494166d48876362ba30ff30b98awrowe#
c30ef289fe64ac7fedc44cfcc6b439f0f8458b4cgregames# CDDL HEADER START
c30ef289fe64ac7fedc44cfcc6b439f0f8458b4cgregames#
5541a81e194dc99521c0ecf904a940b0b65a93f2nd# The contents of this file are subject to the terms of the
59298797d11f48929ea35fd9cef5a7ab8d3942batrawick# Common Development and Distribution License, Version 1.0 only
59298797d11f48929ea35fd9cef5a7ab8d3942batrawick# (the "License"). You may not use this file except in compliance
59298797d11f48929ea35fd9cef5a7ab8d3942batrawick# with the License.
59298797d11f48929ea35fd9cef5a7ab8d3942batrawick#
2dd92c6a9669e0e180f9f2fc9799cf5cf3167534trawick# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9176f5c945b7a6eafad180636752d28de5cbc494trawick# or http://www.opensolaris.org/os/licensing.
2dd92c6a9669e0e180f9f2fc9799cf5cf3167534trawick# See the License for the specific language governing permissions
acc3e80f96b099467531887979ace7d8957f807ctrawick# and limitations under the License.
acc3e80f96b099467531887979ace7d8957f807ctrawick#
acc3e80f96b099467531887979ace7d8957f807ctrawick# When distributing Covered Code, include this CDDL HEADER in each
acc3e80f96b099467531887979ace7d8957f807ctrawick# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
ffd0d55dc34cf4caada15d09018c7d915e5736a3wrowe# If applicable, add the following below this CDDL HEADER, with the
ffd0d55dc34cf4caada15d09018c7d915e5736a3wrowe# fields enclosed by brackets "[]" replaced with your own identifying
ffd0d55dc34cf4caada15d09018c7d915e5736a3wrowe# information: Portions Copyright [yyyy] [name of copyright owner]
9efe68be3c81ee85225972195fb725dbfc2e8b24trawick#
9098f795fab5db41a52b6b82fa475e8f9b3850f0trawick# CDDL HEADER END
9098f795fab5db41a52b6b82fa475e8f9b3850f0trawick#
9098f795fab5db41a52b6b82fa475e8f9b3850f0trawick#
9efe68be3c81ee85225972195fb725dbfc2e8b24trawick#ident "%Z%%M% %I% %E% SMI"
3b872593fd5f61981d9dd69a4b0b5d5f5f668929trawick#
3b872593fd5f61981d9dd69a4b0b5d5f5f668929trawick# Copyright 1996,1998-1999,2002 Sun Microsystems, Inc. All rights reserved.
3b872593fd5f61981d9dd69a4b0b5d5f5f668929trawick# Use is subject to license terms.
5d2959154eb0b63ab0e9ef5fc2c34f296fa7beeegregames#
5d2959154eb0b63ab0e9ef5fc2c34f296fa7beeegregames# cmd/abi/spectrans/Makefile
5d2959154eb0b63ab0e9ef5fc2c34f296fa7beeegregames
5d2959154eb0b63ab0e9ef5fc2c34f296fa7beeegregames.KEEP_STATE:
81b30d1b974212267ddc27c450abc1453ce56423nd
81b30d1b974212267ddc27c450abc1453ce56423ndSUBDIRS = parser spec2map spec2trace
81b30d1b974212267ddc27c450abc1453ce56423nd
fc25339741311efd7d460f18b6287ef38d76bbe6madhumall := TARGET= all
fc25339741311efd7d460f18b6287ef38d76bbe6madhuminstall := TARGET= install
fc25339741311efd7d460f18b6287ef38d76bbe6madhumclean := TARGET= clean
fc25339741311efd7d460f18b6287ef38d76bbe6madhumclobber := TARGET= clobber
fcdca175a52fe517f2317ba0e2b6e6d14522b869madhumlint := TARGET= lint
fcdca175a52fe517f2317ba0e2b6e6d14522b869madhum
92a2439559cf1161742650ed9c50c6483bd029cemadhumall install clean clobber lint: $(SUBDIRS)
92a2439559cf1161742650ed9c50c6483bd029cemadhum
92a2439559cf1161742650ed9c50c6483bd029cemadhum_msg: # No messages for these tools
92a2439559cf1161742650ed9c50c6483bd029cemadhum
0d60370bedd05f9632f54e85c417ce472d463674madhum$(SUBDIRS): FRC
0d60370bedd05f9632f54e85c417ce472d463674madhum @cd $@; pwd; $(MAKE) $(TARGET)
0d60370bedd05f9632f54e85c417ce472d463674madhum
0d60370bedd05f9632f54e85c417ce472d463674madhumFRC:
ebecc16986604cce1369d5075eff65032e3dd0deianh