xref: /illumos-gate/usr/src/cmd/boot/Makefile (revision f808c858)
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 2006 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
40sparc_SUBDIRS=
41
42COMMON_LINTSUBDIRS=	\
43	bootadm
44
45i386_LINTSUBDIRS=	\
46	installgrub
47
48sparc_LINTSUBDIRS=
49
50COMMON_MSGSUBDIRS=	\
51	bootadm
52
53i386_MSGSUBDIRS=	\
54	installgrub
55
56sparc_MSGSUBDIRS=
57
58all:=		TARGET= all
59install:=	TARGET= install
60clean:=		TARGET= clean
61clobber:=	TARGET= clobber
62lint:=		TARGET= lint
63_msg:=		TARGET= _msg
64
65.KEEP_STATE:
66
67SUBDIRS = $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
68LINTSUBDIRS = $(COMMON_LINTSUBDIRS) $($(MACH)_LINTSUBDIRS)
69MSGSUBDIRS = $(COMMON_MSGSUBDIRS) $($(MACH)_MSGSUBDIRS)
70
71all clean clobber: $(SUBDIRS)
72
73install: $(SUBDIRS)
74
75lint: $(LINTSUBDIRS)
76
77_msg: $(MSGSUBDIRS)
78
79FRC:
80
81$(SUBDIRS): FRC
82	@cd $@; pwd; $(MAKE) $(TARGET)
83