c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews#
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# CDDL HEADER START
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews#
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# The contents of this file are subject to the terms of the
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# Common Development and Distribution License, Version 1.0 only
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# (the "License"). You may not use this file except in compliance
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# with the License.
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews#
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# or http://www.opensolaris.org/os/licensing.
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# See the License for the specific language governing permissions
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# and limitations under the License.
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews#
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# When distributing Covered Code, include this CDDL HEADER in each
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# If applicable, add the following below this CDDL HEADER, with the
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# fields enclosed by brackets "[]" replaced with your own identifying
c9297d37593b36de9978c122dbeaf1bb7ae8d19dMark Andrews# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# uts/sun4u/starfire/pcipsy/Makefile
#
# This makefile drives the production of the PCI driver kernel module.
#
# sun4u implementation architecture dependent
#
#
# Path to the base of the uts directory tree (usually /usr/src/uts).
#
UTSBASE = ../../..
#
# Define the module and object file sets.
#
MODULE = pcipsy
OBJECTS = $(PSYCHO_PCI_OBJS:%=$(OBJS_DIR)/%)
LINTS = $(PSYCHO_PCI_OBJS:%.o=$(LINTS_DIR)/%.ln)
ROOTMODULE = $(ROOT_STARFIRE_DRV_DIR)/$(MODULE)
#
# Include common rules.
#
include $(UTSBASE)/sun4u/starfire/Makefile.starfire
#
# Define targets
#
ALL_TARGET = $(BINARY)
LINT_TARGET = $(MODULE).lint
INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
#
# lint pass one enforcement
#
CFLAGS += $(CCVERBOSE)
CERRWARN += -_gcc=-Wno-uninitialized
CERRWARN += -_gcc=-Wno-parentheses
CERRWARN += -_gcc=-Wno-unused-function
#
# Turn on doubleword alignment for 64 bit registers
#
CFLAGS += -dalign
#
# Default build targets.
#
.KEEP_STATE:
def: $(DEF_DEPS)
all: $(ALL_DEPS)
clean: $(CLEAN_DEPS)
clobber: $(CLOBBER_DEPS)
lint: $(LINT_DEPS)
modlintlib: $(MODLINTLIB_DEPS)
clean.lint: $(CLEAN_LINT_DEPS)
install: $(INSTALL_DEPS)
#
# Include common targets.
#
include $(UTSBASE)/sun4u/starfire/Makefile.targ