xref: /titanic_51/usr/src/uts/sun4u/grover/Makefile.grover (revision 2063d9c01c4a721994a3cb528444d7f328135869)
1*2063d9c0SJosef 'Jeff' Sipek#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
5*2063d9c0SJosef 'Jeff' Sipek# Common Development and Distribution License (the "License").
6*2063d9c0SJosef 'Jeff' Sipek# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
207c478bd9Sstevel@tonic-gate#
21*2063d9c0SJosef 'Jeff' Sipek#
22*2063d9c0SJosef 'Jeff' Sipek# uts/sun4u/grover/Makefile.grover
23*2063d9c0SJosef 'Jeff' Sipek# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate# Use is subject to license terms.
257c478bd9Sstevel@tonic-gate#
26*2063d9c0SJosef 'Jeff' Sipek#	Global definitions for sun4u implementation specific modules.
277c478bd9Sstevel@tonic-gate#
287c478bd9Sstevel@tonic-gate
29*2063d9c0SJosef 'Jeff' Sipek#
30*2063d9c0SJosef 'Jeff' Sipek#	Define directories.
31*2063d9c0SJosef 'Jeff' Sipek#
32*2063d9c0SJosef 'Jeff' SipekROOT_GROVER_DIR		= $(ROOT_PLAT_DIR)/SUNW,Sun-Blade-100
33*2063d9c0SJosef 'Jeff' SipekROOT_GROVER_MOD_DIR	= $(ROOT_GROVER_DIR)/kernel
347c478bd9Sstevel@tonic-gate
35*2063d9c0SJosef 'Jeff' SipekROOT_GROVER_MISC_DIR_32	= $(ROOT_GROVER_MOD_DIR)/misc
36*2063d9c0SJosef 'Jeff' SipekROOT_GROVER_MISC_DIR_64	= $(ROOT_GROVER_MISC_DIR_32)/$(SUBDIR64)
37*2063d9c0SJosef 'Jeff' SipekROOT_GROVER_DRV_DIR_32	= $(ROOT_GROVER_MOD_DIR)/drv
38*2063d9c0SJosef 'Jeff' SipekROOT_GROVER_DRV_DIR_64	= $(ROOT_GROVER_DRV_DIR_32)/$(SUBDIR64)
39*2063d9c0SJosef 'Jeff' Sipek
40*2063d9c0SJosef 'Jeff' SipekROOT_GROVER_MISC_DIR	= $(ROOT_GROVER_MISC_DIR_$(CLASS))
41*2063d9c0SJosef 'Jeff' SipekROOT_GROVER_DRV_DIR	= $(ROOT_GROVER_DRV_DIR_$(CLASS))
42*2063d9c0SJosef 'Jeff' Sipek
43*2063d9c0SJosef 'Jeff' SipekROOT_PLAT_MOD_DIRS	+= $(ROOT_GROVER_MOD_DIR)
44*2063d9c0SJosef 'Jeff' SipekROOT_PLAT_MISC_DIRS	+= $(ROOT_GROVER_MISC_DIR)
45*2063d9c0SJosef 'Jeff' Sipek
46*2063d9c0SJosef 'Jeff' SipekUSR_GROVER_DIR		= $(USR_PLAT_DIR)/SUNW,Sun-Blade-100
47*2063d9c0SJosef 'Jeff' SipekUSR_GROVER_LINKED_DIR	= $(USR_PLAT_DIR)/$(LINKED_PLATFORM)
48*2063d9c0SJosef 'Jeff' SipekUSR_GROVER_INC_DIR	= $(USR_GROVER_DIR)/include
49*2063d9c0SJosef 'Jeff' SipekUSR_GROVER_ISYS_DIR	= $(USR_GROVER_INC_DIR)/sys
50*2063d9c0SJosef 'Jeff' SipekUSR_GROVER_SBIN_DIR	= $(USR_GROVER_DIR)/sbin
51*2063d9c0SJosef 'Jeff' SipekUSR_GROVER_LIB_DIR	= $(USR_GROVER_DIR)/lib
52*2063d9c0SJosef 'Jeff' Sipek
53*2063d9c0SJosef 'Jeff' Sipek
54*2063d9c0SJosef 'Jeff' SipekGROVER_LINT_LIB_DIR= $(UTSBASE)/$(PLATFORM)/grover/lint-libs/$(OBJS_DIR)
55*2063d9c0SJosef 'Jeff' Sipek
56*2063d9c0SJosef 'Jeff' Sipek#
57*2063d9c0SJosef 'Jeff' Sipek# Define objects.
58*2063d9c0SJosef 'Jeff' Sipek#
59*2063d9c0SJosef 'Jeff' SipekGROVER_OBJS	= grover.o
60*2063d9c0SJosef 'Jeff' Sipek
61*2063d9c0SJosef 'Jeff' Sipekinclude $(UTSBASE)/sun4u/grover/Makefile.files
62*2063d9c0SJosef 'Jeff' Sipek
63*2063d9c0SJosef 'Jeff' Sipek#
64*2063d9c0SJosef 'Jeff' Sipek#	Include common rules.
65*2063d9c0SJosef 'Jeff' Sipek#
66*2063d9c0SJosef 'Jeff' Sipekinclude $(UTSBASE)/sun4u/Makefile.sun4u
67*2063d9c0SJosef 'Jeff' Sipek
68*2063d9c0SJosef 'Jeff' Sipek#
69*2063d9c0SJosef 'Jeff' Sipek#	Define modules (must come after Makefile.sun4u).
70*2063d9c0SJosef 'Jeff' Sipek#
71*2063d9c0SJosef 'Jeff' SipekGROVER_KMODS	= platmod
72*2063d9c0SJosef 'Jeff' SipekGROVER_KMODS	+= grfans
73*2063d9c0SJosef 'Jeff' Sipek
74*2063d9c0SJosef 'Jeff' Sipek#
75*2063d9c0SJosef 'Jeff' Sipek# For now, disable these lint checks; maintainers should endeavor
76*2063d9c0SJosef 'Jeff' Sipek# to investigate and remove these for maximum lint coverage.
77*2063d9c0SJosef 'Jeff' Sipek# Please do not carry these forward to new Makefiles.
78*2063d9c0SJosef 'Jeff' Sipek#
79*2063d9c0SJosef 'Jeff' SipekLINTTAGS	+= -erroff=E_SUSPICIOUS_COMPARISON
80*2063d9c0SJosef 'Jeff' SipekLINTTAGS	+= -erroff=E_BAD_PTR_CAST_ALIGN
81*2063d9c0SJosef 'Jeff' SipekLINTTAGS	+= -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
82*2063d9c0SJosef 'Jeff' SipekLINTTAGS	+= -erroff=E_STATIC_UNUSED
83*2063d9c0SJosef 'Jeff' SipekLINTTAGS	+= -erroff=E_PTRDIFF_OVERFLOW
84*2063d9c0SJosef 'Jeff' SipekLINTTAGS	+= -erroff=E_ASSIGN_NARROW_CONV
85