1d14d7d31Sis# 2d14d7d31Sis# CDDL HEADER START 3d14d7d31Sis# 4d14d7d31Sis# The contents of this file are subject to the terms of the 5d14d7d31Sis# Common Development and Distribution License (the "License"). 6d14d7d31Sis# You may not use this file except in compliance with the License. 7d14d7d31Sis# 8d14d7d31Sis# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9d14d7d31Sis# or http://www.opensolaris.org/os/licensing. 10d14d7d31Sis# See the License for the specific language governing permissions 11d14d7d31Sis# and limitations under the License. 12d14d7d31Sis# 13d14d7d31Sis# When distributing Covered Code, include this CDDL HEADER in each 14d14d7d31Sis# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15d14d7d31Sis# If applicable, add the following below this CDDL HEADER, with the 16d14d7d31Sis# fields enclosed by brackets "[]" replaced with your own identifying 17d14d7d31Sis# information: Portions Copyright [yyyy] [name of copyright owner] 18d14d7d31Sis# 19d14d7d31Sis# CDDL HEADER END 20d14d7d31Sis# 21d14d7d31Sis# 22d14d7d31Sis# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23d14d7d31Sis# Use is subject to license terms. 24d14d7d31Sis# 25*0aaef2f5SRichard Lowe 26d14d7d31Sis# 27d14d7d31Sis# This makefile drives the production of the kiconv_emea kernel module. 28d14d7d31Sis# 29d14d7d31Sis# intel architecture dependent 30d14d7d31Sis# 31d14d7d31Sis 32d14d7d31Sis# 33d14d7d31Sis# Path to the base of the uts directory tree (usually /usr/src/uts). 34d14d7d31Sis# 35d14d7d31SisUTSBASE = ../.. 36d14d7d31Sis 37d14d7d31Sis# 38d14d7d31Sis# Define the module and object file sets. 39d14d7d31Sis# 40d14d7d31SisMODULE = kiconv_emea 41d14d7d31SisOBJECTS = $(KICONV_EMEA_OBJS:%=$(OBJS_DIR)/%) 42d14d7d31SisROOTMODULE = $(ROOT_KICONV_DIR)/$(MODULE) 43d14d7d31Sis 44d14d7d31Sis# 45d14d7d31Sis# Include common rules. 46d14d7d31Sis# 47d14d7d31Sisinclude $(UTSBASE)/intel/Makefile.intel 48d14d7d31Sis 49d14d7d31Sis# 50d14d7d31Sis# Define targets 51d14d7d31Sis# 52d14d7d31SisALL_TARGET = $(BINARY) 53d14d7d31SisINSTALL_TARGET = $(BINARY) $(ROOTMODULE) 54d14d7d31Sis 55d14d7d31Sis# 56d14d7d31Sis# Overrides. 57d14d7d31Sis# 58d14d7d31SisCFLAGS += $(CCVERBOSE) 59d14d7d31Sis 60d14d7d31Sis# 61d14d7d31Sis# Default build targets. 62d14d7d31Sis# 63d14d7d31Sis.KEEP_STATE: 64d14d7d31Sis 65d14d7d31Sisdef: $(DEF_DEPS) 66d14d7d31Sis 67d14d7d31Sisall: $(ALL_DEPS) 68d14d7d31Sis 69d14d7d31Sisclean: $(CLEAN_DEPS) 70d14d7d31Sis 71d14d7d31Sisclobber: $(CLOBBER_DEPS) 72d14d7d31Sis 73d14d7d31Sisinstall: $(INSTALL_DEPS) 74d14d7d31Sis 75d14d7d31Sis# 76d14d7d31Sis# Include common targets. 77d14d7d31Sis# 78d14d7d31Sisinclude $(UTSBASE)/intel/Makefile.targ 79