Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes#
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# CDDL HEADER START
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes#
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# The contents of this file are subject to the terms of the
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# Common Development and Distribution License, Version 1.0 only
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# (the "License"). You may not use this file except in compliance
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# with the License.
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes#
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# or http://www.opensolaris.org/os/licensing.
0662ed52e814f8f08ef0e09956413a792584eddffuankg# See the License for the specific language governing permissions
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# and limitations under the License.
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes#
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# When distributing Covered Code, include this CDDL HEADER in each
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# If applicable, add the following below this CDDL HEADER, with the
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# fields enclosed by brackets "[]" replaced with your own identifying
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# information: Portions Copyright [yyyy] [name of copyright owner]
70953fb44a7140fe206c3a5f011e24209c8c5c6abnicholes#
70953fb44a7140fe206c3a5f011e24209c8c5c6abnicholes# CDDL HEADER END
16b55a35cff91315d261d1baa776138af465c4e4fuankg#
16b55a35cff91315d261d1baa776138af465c4e4fuankg#
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes# Use is subject to license terms.
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes#
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes#ident "%Z%%M% %I% %E% SMI"
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesUTSBASE = ../..
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesMODULE = cpuid
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesOBJECTS = $(CPUID_OBJS:%=$(OBJS_DIR)/%)
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesLINTS = $(CPUID_OBJS:%.o=$(LINTS_DIR)/%.ln)
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesCONF_SRCDIR = $(UTSBASE)/common/io
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesinclude $(UTSBASE)/intel/Makefile.intel
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholes
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholesALL_TARGET = $(BINARY) $(SRC_CONFILE)
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholesLINT_TARGET = $(MODULE).lint
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholesINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholes
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholes.KEEP_STATE:
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholes
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholesdef: $(DEF_DEPS)
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesall: $(ALL_DEPS)
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesclean: $(CLEAN_DEPS)
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesclobber: $(CLOBBER_DEPS)
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholeslint: $(LINT_DEPS)
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesmodlintlib: $(MODLINTLIB_DEPS)
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesclean.lint: $(CLEAN_LINT_DEPS)
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesinstall: $(INSTALL_DEPS)
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholesinclude $(UTSBASE)/intel/Makefile.targ
302abf53d2b1a686f6eafd445c49e1e006afb190bnicholes