1*e4b86885SCheng Sean Ye# 2*e4b86885SCheng Sean Ye# CDDL HEADER START 3*e4b86885SCheng Sean Ye# 4*e4b86885SCheng Sean Ye# The contents of this file are subject to the terms of the 5*e4b86885SCheng Sean Ye# Common Development and Distribution License (the "License"). 6*e4b86885SCheng Sean Ye# You may not use this file except in compliance with the License. 7*e4b86885SCheng Sean Ye# 8*e4b86885SCheng Sean Ye# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*e4b86885SCheng Sean Ye# or http://www.opensolaris.org/os/licensing. 10*e4b86885SCheng Sean Ye# See the License for the specific language governing permissions 11*e4b86885SCheng Sean Ye# and limitations under the License. 12*e4b86885SCheng Sean Ye# 13*e4b86885SCheng Sean Ye# When distributing Covered Code, include this CDDL HEADER in each 14*e4b86885SCheng Sean Ye# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*e4b86885SCheng Sean Ye# If applicable, add the following below this CDDL HEADER, with the 16*e4b86885SCheng Sean Ye# fields enclosed by brackets "[]" replaced with your own identifying 17*e4b86885SCheng Sean Ye# information: Portions Copyright [yyyy] [name of copyright owner] 18*e4b86885SCheng Sean Ye# 19*e4b86885SCheng Sean Ye# CDDL HEADER END 20*e4b86885SCheng Sean Ye# 21*e4b86885SCheng Sean Ye 22*e4b86885SCheng Sean Ye# 23*e4b86885SCheng Sean Ye# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 24*e4b86885SCheng Sean Ye# Use is subject to license terms. 25*e4b86885SCheng Sean Ye# 26*e4b86885SCheng Sean Ye 27*e4b86885SCheng Sean Ye# 28*e4b86885SCheng Sean Ye# Path to the base of the uts directory tree (usually /usr/src/uts). 29*e4b86885SCheng Sean Ye# 30*e4b86885SCheng Sean YeUTSBASE = ../.. 31*e4b86885SCheng Sean Ye 32*e4b86885SCheng Sean Ye# 33*e4b86885SCheng Sean Ye# Define the module and object file sets. 34*e4b86885SCheng Sean Ye# 35*e4b86885SCheng Sean YeMODULE = fm 36*e4b86885SCheng Sean Ye# 37*e4b86885SCheng Sean YeOBJECTS = $(FM_OBJS:%=$(OBJS_DIR)/%) 38*e4b86885SCheng Sean YeROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 39*e4b86885SCheng Sean YeCONF_SRCDIR = $(UTSBASE)/common/io 40*e4b86885SCheng Sean Ye 41*e4b86885SCheng Sean Ye# 42*e4b86885SCheng Sean Ye# Include common rules. 43*e4b86885SCheng Sean Ye# 44*e4b86885SCheng Sean Yeinclude $(UTSBASE)/intel/Makefile.intel 45*e4b86885SCheng Sean Ye 46*e4b86885SCheng Sean Ye# 47*e4b86885SCheng Sean Ye# Define targets 48*e4b86885SCheng Sean Ye# 49*e4b86885SCheng Sean YeALL_TARGET = $(BINARY) $(SRC_CONFFILE) 50*e4b86885SCheng Sean YeINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 51*e4b86885SCheng Sean Ye 52*e4b86885SCheng Sean Ye# For sys/cpu_module.h 53*e4b86885SCheng Sean YeCPPFLAGS += -I$(UTSBASE)/i86pc 54*e4b86885SCheng Sean Ye 55*e4b86885SCheng Sean Ye# 56*e4b86885SCheng Sean Ye# Default build targets. 57*e4b86885SCheng Sean Ye# 58*e4b86885SCheng Sean Ye.KEEP_STATE: 59*e4b86885SCheng Sean Ye 60*e4b86885SCheng Sean Yedef: $(DEF_DEPS) 61*e4b86885SCheng Sean Ye 62*e4b86885SCheng Sean Yeall: $(ALL_DEPS) 63*e4b86885SCheng Sean Ye 64*e4b86885SCheng Sean Yeclean: $(CLEAN_DEPS) 65*e4b86885SCheng Sean Ye 66*e4b86885SCheng Sean Yeclobber: $(CLOBBER_DEPS) 67*e4b86885SCheng Sean Ye 68*e4b86885SCheng Sean Yeinstall: $(INSTALL_DEPS) 69*e4b86885SCheng Sean Ye 70*e4b86885SCheng Sean Ye# 71*e4b86885SCheng Sean Ye# Include common targets. 72*e4b86885SCheng Sean Ye# 73*e4b86885SCheng Sean Yeinclude ../Makefile.targ 74