10Sstevel@tonic-gate# 20Sstevel@tonic-gate# CDDL HEADER START 30Sstevel@tonic-gate# 40Sstevel@tonic-gate# The contents of this file are subject to the terms of the 51258Smlf# Common Development and Distribution License (the "License"). 61258Smlf# You may not use this file except in compliance with the License. 70Sstevel@tonic-gate# 80Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate# See the License for the specific language governing permissions 110Sstevel@tonic-gate# and limitations under the License. 120Sstevel@tonic-gate# 130Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate# 190Sstevel@tonic-gate# CDDL HEADER END 200Sstevel@tonic-gate# 210Sstevel@tonic-gate# 22*12426Sgdamore@opensolaris.org# Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. 230Sstevel@tonic-gate# 240Sstevel@tonic-gate# lib/cfgadm_plugins/Makefile 250Sstevel@tonic-gate# 260Sstevel@tonic-gate 271167Skupferinclude $(SRC)/Makefile.master 280Sstevel@tonic-gate 29*12426Sgdamore@opensolaris.orgCOMMON_SUBDIRS= scsi pci usb ib fp shp sbd 3012004Sjiang.liu@intel.comsparc_SUBDIRS= ac sysctrl 310Sstevel@tonic-gate 321258Smlfi386_SUBDIRS= sata 330Sstevel@tonic-gate 340Sstevel@tonic-gateSUBDIRS= $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS) 350Sstevel@tonic-gate 360Sstevel@tonic-gateALL_SUBDIRS= $(COMMON_SUBDIRS) $(sparc_SUBDIRS) $(i386_SUBDIRS) 370Sstevel@tonic-gate 380Sstevel@tonic-gateMSGSUBDIRS= $(ALL_SUBDIRS) 390Sstevel@tonic-gate 400Sstevel@tonic-gateall:= TARGET= all 410Sstevel@tonic-gateinstall:= TARGET= install 420Sstevel@tonic-gateclean:= TARGET= clean 430Sstevel@tonic-gateclobber:= TARGET= clobber 440Sstevel@tonic-gatelint:= TARGET= lint 450Sstevel@tonic-gate_msg:= TARGET= _msg 460Sstevel@tonic-gate 470Sstevel@tonic-gate.KEEP_STATE: 480Sstevel@tonic-gate 490Sstevel@tonic-gateall clean clobber lint: $(SUBDIRS) 500Sstevel@tonic-gate 510Sstevel@tonic-gateinstall: all $(SUBDIRS) 520Sstevel@tonic-gate 530Sstevel@tonic-gate_msg: $(MSGSUBDIRS) 540Sstevel@tonic-gate 550Sstevel@tonic-gate$(ALL_SUBDIRS): FRC 560Sstevel@tonic-gate @cd $@; pwd; $(MAKE) $(TARGET) 570Sstevel@tonic-gate 580Sstevel@tonic-gateFRC: 59