xref: /illumos-gate/usr/src/cmd/boot/Makefile (revision 4e5b757f)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21#
22# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25#ident	"%Z%%M%	%I%	%E% SMI"
26#
27
28include ../Makefile.cmd
29
30.PARALLEL:
31
32COMMON_SUBDIRS=		\
33	scripts		\
34	bootadm
35
36i386_SUBDIRS=		\
37	installgrub	\
38	mbr		\
39	symdef
40
41sparc_SUBDIRS=
42
43COMMON_LINTSUBDIRS=	\
44	bootadm
45
46i386_LINTSUBDIRS=	\
47	installgrub	\
48	symdef
49
50sparc_LINTSUBDIRS=
51
52COMMON_MSGSUBDIRS=	\
53	bootadm
54
55i386_MSGSUBDIRS=	\
56	installgrub
57
58sparc_MSGSUBDIRS=
59
60all:=		TARGET= all
61install:=	TARGET= install
62clean:=		TARGET= clean
63clobber:=	TARGET= clobber
64lint:=		TARGET= lint
65_msg:=		TARGET= _msg
66
67.KEEP_STATE:
68
69SUBDIRS = $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
70LINTSUBDIRS = $(COMMON_LINTSUBDIRS) $($(MACH)_LINTSUBDIRS)
71MSGSUBDIRS = $(COMMON_MSGSUBDIRS) $($(MACH)_MSGSUBDIRS)
72
73all clean clobber: $(SUBDIRS)
74
75install: $(SUBDIRS)
76
77lint: $(LINTSUBDIRS)
78
79_msg: $(MSGSUBDIRS)
80
81FRC:
82
83$(SUBDIRS): FRC
84	@cd $@; pwd; $(MAKE) $(TARGET)
85