1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# uts/sun4u/grover/Makefile.grover 24# Copyright 2000-2002 Sun Microsystems, Inc. All rights reserved. 25# Use is subject to license terms. 26# 27#pragma ident "%Z%%M% %I% %E% SMI" 28# 29# Global definitions for sun4u implementation specific modules. 30# 31 32# 33# Define directories. 34# 35ROOT_GROVER_DIR = $(ROOT_PLAT_DIR)/SUNW,Sun-Blade-100 36ROOT_GROVER_MOD_DIR = $(ROOT_GROVER_DIR)/kernel 37 38ROOT_GROVER_MISC_DIR_32 = $(ROOT_GROVER_MOD_DIR)/misc 39ROOT_GROVER_MISC_DIR_64 = $(ROOT_GROVER_MISC_DIR_32)/$(SUBDIR64) 40ROOT_GROVER_DRV_DIR_32 = $(ROOT_GROVER_MOD_DIR)/drv 41ROOT_GROVER_DRV_DIR_64 = $(ROOT_GROVER_DRV_DIR_32)/$(SUBDIR64) 42 43ROOT_GROVER_MISC_DIR = $(ROOT_GROVER_MISC_DIR_$(CLASS)) 44ROOT_GROVER_DRV_DIR = $(ROOT_GROVER_DRV_DIR_$(CLASS)) 45 46ROOT_PLAT_MOD_DIRS += $(ROOT_GROVER_MOD_DIR) 47ROOT_PLAT_MISC_DIRS += $(ROOT_GROVER_MISC_DIR) 48 49USR_GROVER_DIR = $(USR_PLAT_DIR)/SUNW,Sun-Blade-100 50USR_GROVER_LINKED_DIR = $(USR_PLAT_DIR)/$(LINKED_PLATFORM) 51USR_GROVER_INC_DIR = $(USR_GROVER_DIR)/include 52USR_GROVER_ISYS_DIR = $(USR_GROVER_INC_DIR)/sys 53USR_GROVER_SBIN_DIR = $(USR_GROVER_DIR)/sbin 54USR_GROVER_LIB_DIR = $(USR_GROVER_DIR)/lib 55 56 57GROVER_LINT_LIB_DIR= $(UTSBASE)/$(PLATFORM)/grover/lint-libs/$(OBJS_DIR) 58 59# 60# Define objects. 61# 62GROVER_OBJS = grover.o 63 64# 65# Define modules. 66# 67GROVER_KMODS = platmod 68GROVER_KMODS += grfans 69GROVER_KMODS += grppm 70 71include $(UTSBASE)/sun4u/grover/Makefile.files 72 73# 74# Include common rules. 75# 76include $(UTSBASE)/sun4u/Makefile.sun4u 77