Home | History | Annotate | Download | only in boot
      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 
     26 include $(SRC)/cmd/Makefile.cmd
     27 
     28 .PARALLEL:
     29 
     30 COMMON_SUBDIRS=		\
     31 	filelist	\
     32 	fiocompress	\
     33 	scripts		\
     34 	bootadm
     35 
     36 i386_SUBDIRS=		\
     37 	installgrub	\
     38 	mbr		\
     39 	symdef
     40 
     41 COMMON_LINTSUBDIRS=	\
     42 	bootadm	
     43 
     44 i386_LINTSUBDIRS=	\
     45 	fiocompress	\
     46 	installgrub	\
     47 	symdef
     48 
     49 COMMON_MSGSUBDIRS=	\
     50 	bootadm		\
     51 	fiocompress
     52 
     53 i386_MSGSUBDIRS=	\
     54 	installgrub
     55 
     56 
     57 all:=		TARGET= all
     58 install:=	TARGET= install
     59 clean:=		TARGET= clean
     60 clobber:=	TARGET= clobber
     61 lint:=		TARGET= lint
     62 _msg:=		TARGET= _msg
     63 
     64 .KEEP_STATE:
     65 
     66 SUBDIRS = $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
     67 LINTSUBDIRS = $(COMMON_LINTSUBDIRS) $($(MACH)_LINTSUBDIRS)
     68 MSGSUBDIRS = $(COMMON_MSGSUBDIRS) $($(MACH)_MSGSUBDIRS)
     69 
     70 all clean clobber: $(SUBDIRS)
     71 
     72 install: $(SUBDIRS)
     73 
     74 lint: $(LINTSUBDIRS)
     75 
     76 _msg: $(MSGSUBDIRS)
     77 
     78 FRC:
     79 
     80 $(SUBDIRS): FRC
     81 	@cd $@; pwd; $(MAKE) $(TARGET)
     82