1*1c42de6dSgd78059# 2*1c42de6dSgd78059# CDDL HEADER START 3*1c42de6dSgd78059# 4*1c42de6dSgd78059# The contents of this file are subject to the terms of the 5*1c42de6dSgd78059# Common Development and Distribution License (the "License"). 6*1c42de6dSgd78059# You may not use this file except in compliance with the License. 7*1c42de6dSgd78059# 8*1c42de6dSgd78059# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*1c42de6dSgd78059# or http://www.opensolaris.org/os/licensing. 10*1c42de6dSgd78059# See the License for the specific language governing permissions 11*1c42de6dSgd78059# and limitations under the License. 12*1c42de6dSgd78059# 13*1c42de6dSgd78059# When distributing Covered Code, include this CDDL HEADER in each 14*1c42de6dSgd78059# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*1c42de6dSgd78059# If applicable, add the following below this CDDL HEADER, with the 16*1c42de6dSgd78059# fields enclosed by brackets "[]" replaced with your own identifying 17*1c42de6dSgd78059# information: Portions Copyright [yyyy] [name of copyright owner] 18*1c42de6dSgd78059# 19*1c42de6dSgd78059# CDDL HEADER END 20*1c42de6dSgd78059# 21*1c42de6dSgd78059# 22*1c42de6dSgd78059# uts/sun4u/todstarcat/Makefile 23*1c42de6dSgd78059# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 24*1c42de6dSgd78059# Use is subject to license terms. 25*1c42de6dSgd78059# 26*1c42de6dSgd78059#pragma ident "%Z%%M% %I% %E% SMI" 27*1c42de6dSgd78059# 28*1c42de6dSgd78059# This makefile drives the production of the todstarcat 29*1c42de6dSgd78059# kernel module. 30*1c42de6dSgd78059# 31*1c42de6dSgd78059 32*1c42de6dSgd78059# 33*1c42de6dSgd78059# Path to the base of the uts directory tree (usually /usr/src/uts). 34*1c42de6dSgd78059# 35*1c42de6dSgd78059UTSBASE = ../.. 36*1c42de6dSgd78059 37*1c42de6dSgd78059# 38*1c42de6dSgd78059# Define the module and object file sets. 39*1c42de6dSgd78059# 40*1c42de6dSgd78059MODULE = todstarcat 41*1c42de6dSgd78059OBJECTS = $(TODSTARCAT_OBJS:%=$(OBJS_DIR)/%) 42*1c42de6dSgd78059LINTS = $(TODSTARCAT_OBJS:%.o=$(LINTS_DIR)/%.ln) 43*1c42de6dSgd78059ROOTMODULE = $(ROOT_PSM_TOD_DIR)/$(MODULE) 44*1c42de6dSgd78059 45*1c42de6dSgd78059# 46*1c42de6dSgd78059# Include common rules. 47*1c42de6dSgd78059# 48*1c42de6dSgd78059include $(UTSBASE)/sun4u/Makefile.sun4u 49*1c42de6dSgd78059 50*1c42de6dSgd78059INC_PATH += -I$(UTSBASE)/sun4u/starcat 51*1c42de6dSgd78059 52*1c42de6dSgd78059# 53*1c42de6dSgd78059# Define targets 54*1c42de6dSgd78059# 55*1c42de6dSgd78059ALL_TARGET = $(BINARY) 56*1c42de6dSgd78059LINT_TARGET = $(MODULE).lint 57*1c42de6dSgd78059INSTALL_TARGET = $(BINARY) $(ROOTMODULE) 58*1c42de6dSgd78059 59*1c42de6dSgd78059# 60*1c42de6dSgd78059# module dependencies 61*1c42de6dSgd78059# 62*1c42de6dSgd78059LDFLAGS += -dy -Ndrv/sbbc -Ndrv/iosram 63*1c42de6dSgd78059 64*1c42de6dSgd78059# 65*1c42de6dSgd78059# Default build targets. 66*1c42de6dSgd78059# 67*1c42de6dSgd78059.KEEP_STATE: 68*1c42de6dSgd78059 69*1c42de6dSgd78059def: $(DEF_DEPS) 70*1c42de6dSgd78059 71*1c42de6dSgd78059all: $(ALL_DEPS) 72*1c42de6dSgd78059 73*1c42de6dSgd78059clean: $(CLEAN_DEPS) 74*1c42de6dSgd78059 75*1c42de6dSgd78059clobber: $(CLOBBER_DEPS) 76*1c42de6dSgd78059 77*1c42de6dSgd78059lint: $(LINT_DEPS) 78*1c42de6dSgd78059 79*1c42de6dSgd78059modlintlib: $(MODLINTLIB_DEPS) 80*1c42de6dSgd78059 81*1c42de6dSgd78059clean.lint: $(CLEAN_LINT_DEPS) 82*1c42de6dSgd78059 83*1c42de6dSgd78059install: $(INSTALL_DEPS) 84*1c42de6dSgd78059 85*1c42de6dSgd78059# 86*1c42de6dSgd78059# Include common targets. 87*1c42de6dSgd78059# 88*1c42de6dSgd78059include $(UTSBASE)/sun4u/Makefile.targ 89