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