comm: add -Wall
[unleashed.git] / usr / src / cmd / boot / Makefile
blobf43a35a25ff3957882925ffdf5cffc6f3db34041
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 mbr \
38 symdef
40 sparc_SUBDIRS=
42 COMMON_MSGSUBDIRS= \
43 bootadm \
44 fiocompress \
45 installboot
47 i386_MSGSUBDIRS=
49 sparc_MSGSUBDIRS=
52 all:= TARGET= all
53 install:= TARGET= install
54 clean:= TARGET= clean
55 clobber:= TARGET= clobber
56 _msg:= TARGET= _msg
58 .KEEP_STATE:
60 SUBDIRS = $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
61 MSGSUBDIRS = $(COMMON_MSGSUBDIRS) $($(MACH)_MSGSUBDIRS)
63 all clean clobber: $(SUBDIRS)
65 install: $(SUBDIRS)
67 _msg: $(MSGSUBDIRS)
69 FRC:
71 $(SUBDIRS): FRC
72 @cd $@; pwd; $(MAKE) $(TARGET)