Makefile.excalibur revision bb25c06cca41ca78e5fb87fbb8e81d55beb18c95
1037N/A#
1037N/A# CDDL HEADER START
1037N/A#
1037N/A# The contents of this file are subject to the terms of the
1037N/A# Common Development and Distribution License (the "License").
1037N/A# You may not use this file except in compliance with the License.
1037N/A#
1037N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1037N/A# or http://www.opensolaris.org/os/licensing.
1037N/A# See the License for the specific language governing permissions
1037N/A# and limitations under the License.
1037N/A#
1471N/A# When distributing Covered Code, include this CDDL HEADER in each
1037N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1037N/A# If applicable, add the following below this CDDL HEADER, with the
1037N/A# fields enclosed by brackets "[]" replaced with your own identifying
1037N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1037N/A#
1037N/A# CDDL HEADER END
1037N/A#
1037N/A#
1037N/A# uts/sun4u/excalibur/Makefile.excalibur
1037N/A#
1037N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
1037N/A# Use is subject to license terms.
1037N/A#
1471N/A#ident "%Z%%M% %I% %E% SMI"
1471N/A#
1471N/A# Global definitions for sun4u implementation specific modules.
1037N/A#
1037N/A
1037N/A#
1037N/A# Define directories.
1037N/A#
1037N/AROOT_EXCALIBUR_DIR = $(ROOT_PLAT_DIR)/SUNW,Sun-Blade-1000
1037N/AROOT_EXCALIBUR_MOD_DIR = $(ROOT_EXCALIBUR_DIR)/kernel
1037N/A
1037N/AROOT_EXCALIBUR_MISC_DIR_32 = $(ROOT_EXCALIBUR_MOD_DIR)/misc
1037N/AROOT_EXCALIBUR_MISC_DIR_64 = $(ROOT_EXCALIBUR_MISC_DIR_32)/$(SUBDIR64)
1037N/AROOT_EXCALIBUR_DRV_DIR_32 = $(ROOT_EXCALIBUR_MOD_DIR)/drv
1037N/AROOT_EXCALIBUR_DRV_DIR_64 = $(ROOT_EXCALIBUR_DRV_DIR_32)/$(SUBDIR64)
1037N/AROOT_EXCALIBUR_CRYPTO_DIR_32 = $(ROOT_EXCALIBUR_MOD_DIR)/crypto
1037N/AROOT_EXCALIBUR_CRYPTO_DIR_64 = $(ROOT_EXCALIBUR_CRYPTO_DIR_32)/$(SUBDIR64)
1037N/A
1037N/AROOT_EXCALIBUR_MISC_DIR = $(ROOT_EXCALIBUR_MISC_DIR_$(CLASS))
1037N/AROOT_EXCALIBUR_DRV_DIR = $(ROOT_EXCALIBUR_DRV_DIR_$(CLASS))
1037N/AROOT_EXCALIBUR_CRYPTO_DIR = $(ROOT_EXCALIBUR_CRYPTO_DIR_$(CLASS))
1037N/A
1037N/AROOT_PLAT_MOD_DIRS += $(ROOT_EXCALIBUR_MOD_DIR)
1037N/AROOT_PLAT_MISC_DIRS += $(ROOT_EXCALIBUR_MISC_DIR)
1037N/A
1037N/AUSR_EXCALIBUR_DIR = $(USR_PLAT_DIR)/SUNW,Sun-Blade-1000
1037N/AUSR_EXCALIBUR_LINKED_DIR = $(USR_PLAT_DIR)/$(LINKED_PLATFORM)
1037N/AUSR_EXCALIBUR_INC_DIR = $(USR_EXCALIBUR_DIR)/include
1037N/AUSR_EXCALIBUR_ISYS_DIR = $(USR_EXCALIBUR_INC_DIR)/sys
1037N/AUSR_EXCALIBUR_SBIN_DIR = $(USR_EXCALIBUR_DIR)/sbin
1037N/AUSR_EXCALIBUR_LIB_DIR = $(USR_EXCALIBUR_DIR)/lib
1471N/A
1471N/AEXCALIBUR_LINT_LIB_DIR= $(UTSBASE)/$(PLATFORM)/excalibur/lint-libs/$(OBJS_DIR)
1037N/A
1037N/A#
1037N/A# Define objects.
1037N/A#
1037N/AEXCALIBUR_OBJS = excalibur.o
1037N/A
1037N/A#
1037N/A# Define modules.
1037N/A#
1037N/AEXCALIBUR_KMODS = xcalppm xcalwd platmod
1037N/A
1037N/A#
1037N/A# Links to UltraSparc III crypto modules
1037N/A#
1037N/AEXCALIBUR_CRYPTO_LINKS = aes
1037N/A
1037N/Ainclude $(UTSBASE)/sun4u/excalibur/Makefile.files
1037N/A
1037N/A#
1037N/A# Include common rules.
1037N/A#
1037N/Ainclude $(UTSBASE)/sun4u/Makefile.sun4u
1037N/A
1037N/A#
1037N/A# For now, disable these lint checks; maintainers should endeavor
1037N/A# to investigate and remove these for maximum lint coverage.
1037N/A# Please do not carry these forward to new Makefiles.
1037N/A#
1037N/ALINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
1037N/ALINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
1037N/ALINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
1037N/A
1037N/A