9804 hal-set-property should support --direct option
[unleashed.git] / usr / src / cmd / boot / Makefile
blob32f8c778d69881dc70eaaa36b3b6d95b56092cd1
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
21 # Copyright 2016 Toomas Soome <tsoome@me.com>
22 # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
25 include $(SRC)/cmd/Makefile.cmd
27 .PARALLEL:
29 COMMON_SUBDIRS= \
30 filelist \
31 fiocompress \
32 scripts \
33 bootadm \
34 installboot
36 i386_SUBDIRS= \
37 installgrub \
38 mbr \
39 symdef
41 sparc_SUBDIRS=
43 COMMON_LINTSUBDIRS= \
44 bootadm \
45 installboot
47 i386_LINTSUBDIRS= \
48 fiocompress \
49 installgrub \
50 symdef
52 sparc_LINTSUBDIRS=
54 COMMON_MSGSUBDIRS= \
55 bootadm \
56 fiocompress \
57 installboot
59 i386_MSGSUBDIRS= \
60 installgrub
62 sparc_MSGSUBDIRS=
65 all:= TARGET= all
66 install:= TARGET= install
67 clean:= TARGET= clean
68 clobber:= TARGET= clobber
69 lint:= TARGET= lint
70 _msg:= TARGET= _msg
72 .KEEP_STATE:
74 SUBDIRS = $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
75 LINTSUBDIRS = $(COMMON_LINTSUBDIRS) $($(MACH)_LINTSUBDIRS)
76 MSGSUBDIRS = $(COMMON_MSGSUBDIRS) $($(MACH)_MSGSUBDIRS)
78 all clean clobber: $(SUBDIRS)
80 install: $(SUBDIRS)
82 lint: $(LINTSUBDIRS)
84 _msg: $(MSGSUBDIRS)
86 FRC:
88 $(SUBDIRS): FRC
89 @cd $@; pwd; $(MAKE) $(TARGET)