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