Home | History | Annotate | Download | only in i86hvm
      1   6451    edp #
      2   6451    edp # CDDL HEADER START
      3   6451    edp #
      4   6451    edp # The contents of this file are subject to the terms of the
      5   6451    edp # Common Development and Distribution License (the "License").
      6   6451    edp # You may not use this file except in compliance with the License.
      7   6451    edp #
      8   6451    edp # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
      9   6451    edp # or http://www.opensolaris.org/os/licensing.
     10   6451    edp # See the License for the specific language governing permissions
     11   6451    edp # and limitations under the License.
     12   6451    edp #
     13   6451    edp # When distributing Covered Code, include this CDDL HEADER in each
     14   6451    edp # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
     15   6451    edp # If applicable, add the following below this CDDL HEADER, with the
     16   6451    edp # fields enclosed by brackets "[]" replaced with your own identifying
     17   6451    edp # information: Portions Copyright [yyyy] [name of copyright owner]
     18   6451    edp #
     19   6451    edp # CDDL HEADER END
     20   6451    edp #
     21  10738  James 
     22   6451    edp #
     23  10738  James # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
     24   6451    edp # Use is subject to license terms.
     25   6451    edp #
     26   6451    edp #	Common targets for i86hvm platform-implementation specific modules.
     27   6451    edp #
     28   6451    edp 
     29   6451    edp .KEEP_STATE:
     30   6451    edp 
     31   6451    edp #
     32   6451    edp # Rules for implementation subdirectories.
     33   6451    edp #
     34   6451    edp $(ROOT_HVM_DIR):
     35  10738  James 	$(INS.dir)
     36   6451    edp 
     37   6451    edp $(ROOT_HVM_MOD_DIR):		$(ROOT_HVM_DIR)
     38  10738  James 	$(INS.dir)
     39   6451    edp 
     40   6534    edp $(ROOT_HVM_DRV_DIR_32):		$(ROOT_HVM_MOD_DIR)
     41  10738  James 	$(INS.dir)
     42   6451    edp 
     43   6534    edp $(ROOT_HVM_DRV_DIR_64):		$(ROOT_HVM_DRV_DIR_32)
     44  10738  James 	$(INS.dir)
     45   6534    edp 
     46   6534    edp $(ROOT_HVM_MISC_DIR_32):	$(ROOT_HVM_MOD_DIR)
     47  10738  James 	$(INS.dir)
     48   6534    edp 
     49   6534    edp $(ROOT_HVM_MISC_DIR_64):	$(ROOT_HVM_MISC_DIR_32)
     50  10738  James 	$(INS.dir)
     51   6451    edp 
     52   6451    edp $(ROOT_HVM_MOD_DIR)/%:		$(OBJS_DIR)/% $(ROOT_HVM_MOD_DIR) FRC
     53   6451    edp 	$(INS.file)
     54   6451    edp 
     55   6451    edp $(ROOT_HVM_DRV_DIR)/%:		$(OBJS_DIR)/% $(ROOT_HVM_DRV_DIR) FRC
     56   6451    edp 	$(INS.file)
     57   6451    edp 
     58   6451    edp $(ROOT_HVM_MISC_DIR)/%:		$(OBJS_DIR)/% $(ROOT_HVM_MISC_DIR) FRC
     59   6451    edp 	$(INS.file)
     60   6451    edp 
     61   6451    edp $(USR_HVM_DIR):
     62  10738  James 	$(INS.dir)
     63   6451    edp 
     64   6451    edp #
     65   6451    edp #	Include common targets.
     66   6451    edp #
     67   6451    edp include $(UTSBASE)/$(PLATFORM)/i86hvm/Makefile.rules
     68   6451    edp include $(UTSBASE)/$(PLATFORM)/Makefile.targ
     69