xref: /onnv-gate/usr/src/psm/stand/bootlst/sparc/Makefile (revision 6423:437422a29d3a)
1*6423Sgw25295#
2*6423Sgw25295# CDDL HEADER START
3*6423Sgw25295#
4*6423Sgw25295# The contents of this file are subject to the terms of the
5*6423Sgw25295# Common Development and Distribution License (the "License").
6*6423Sgw25295# You may not use this file except in compliance with the License.
7*6423Sgw25295#
8*6423Sgw25295# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*6423Sgw25295# or http://www.opensolaris.org/os/licensing.
10*6423Sgw25295# See the License for the specific language governing permissions
11*6423Sgw25295# and limitations under the License.
12*6423Sgw25295#
13*6423Sgw25295# When distributing Covered Code, include this CDDL HEADER in each
14*6423Sgw25295# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*6423Sgw25295# If applicable, add the following below this CDDL HEADER, with the
16*6423Sgw25295# fields enclosed by brackets "[]" replaced with your own identifying
17*6423Sgw25295# information: Portions Copyright [yyyy] [name of copyright owner]
18*6423Sgw25295#
19*6423Sgw25295# CDDL HEADER END
20*6423Sgw25295#
21*6423Sgw25295#
22*6423Sgw25295# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23*6423Sgw25295# Use is subject to license terms.
24*6423Sgw25295#
25*6423Sgw25295#ident	"%Z%%M%	%I%	%E% SMI"
26*6423Sgw25295#
27*6423Sgw25295
28*6423Sgw25295SUBDIRS = sun4u sun4v
29*6423Sgw25295
30*6423Sgw25295all		:=	TARGET= all
31*6423Sgw25295install		:=	TARGET= install
32*6423Sgw25295clean		:=	TARGET= clean
33*6423Sgw25295clobber		:=	TARGET= clobber
34*6423Sgw25295lint		:=	TARGET= lint
35*6423Sgw25295clean.lint	:=	TARGET= clean.lint
36*6423Sgw25295
37*6423Sgw25295.KEEP_STATE:
38*6423Sgw25295
39*6423Sgw25295all install clean clobber lint clean.lint: $(SUBDIRS)
40*6423Sgw25295
41*6423Sgw25295$(SUBDIRS): FRC
42*6423Sgw25295	@cd $@; pwd; $(MAKE) $(TARGET)
43*6423Sgw25295
44*6423Sgw25295FRC:
45