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