xref: /illumos-gate/usr/src/cmd/boot/Makefile (revision 581cede61ac9c14d8d4ea452562a567189eead78)
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 2008 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25
26include $(SRC)/cmd/Makefile.cmd
27
28.PARALLEL:
29
30COMMON_SUBDIRS=		\
31	filelist	\
32	fiocompress	\
33	scripts		\
34	bootadm
35
36i386_SUBDIRS=		\
37	installgrub	\
38	mbr		\
39	symdef
40
41COMMON_LINTSUBDIRS=	\
42	bootadm
43
44i386_LINTSUBDIRS=	\
45	fiocompress	\
46	installgrub	\
47	symdef
48
49COMMON_MSGSUBDIRS=	\
50	bootadm		\
51	fiocompress
52
53i386_MSGSUBDIRS=	\
54	installgrub
55
56
57all:=		TARGET= all
58install:=	TARGET= install
59clean:=		TARGET= clean
60clobber:=	TARGET= clobber
61lint:=		TARGET= lint
62_msg:=		TARGET= _msg
63
64.KEEP_STATE:
65
66SUBDIRS = $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
67LINTSUBDIRS = $(COMMON_LINTSUBDIRS) $($(MACH)_LINTSUBDIRS)
68MSGSUBDIRS = $(COMMON_MSGSUBDIRS) $($(MACH)_MSGSUBDIRS)
69
70all clean clobber: $(SUBDIRS)
71
72install: $(SUBDIRS)
73
74lint: $(LINTSUBDIRS)
75
76_msg: $(MSGSUBDIRS)
77
78FRC:
79
80$(SUBDIRS): FRC
81	@cd $@; pwd; $(MAKE) $(TARGET)
82