Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
561N/A#
561N/A# CDDL HEADER START
943N/A#
561N/A# The contents of this file are subject to the terms of the
561N/A# Common Development and Distribution License, Version 1.0 only
919N/A# (the "License"). You may not use this file except in compliance
919N/A# with the License.
919N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A#
561N/A# uts/sun4u/enchilada/enchppm/Makefile
561N/A# Copyright 2002 Sun Microsystems, Inc. All rights reserved.
561N/A# Use is subject to license terms.
561N/A#
561N/A#pragma ident "%Z%%M% %I% %E% SMI"
561N/A#
970N/A# This makefile drives the production of the platform power
970N/A# management driver in the sun4u enchilada system.
970N/A#
970N/A
561N/A#
1043N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
561N/A#
911N/AUTSBASE = ../../..
1043N/A
1043N/A#
911N/A# Define the module and object file sets.
561N/A#
561N/AMODULE = ppm
ROOTMODULE = $(ROOT_ENCHILADA_DRV_DIR)/$(MODULE)
CONF_SRCDIR = $(UTSBASE)/sun4u/enchilada/io
#
# Include common rules.
#
include $(UTSBASE)/sun4u/enchilada/Makefile.enchilada
#
# Define targets
#
ALL_TARGET = $(SRC_CONFILE)
INSTALL_TARGET = $(ROOT_CONFFILE)
#
# Overrides
#
NO_BUILDS =
ALL_BUILDS = $(ALL_BUILDSONLY64)
DEF_BUILDS = $(DEF_BUILDSONLY64)
CLEANLINTFILES += $(LINT32_FILES)
#
# The only thing we do from here is install the .conf file
#
CONF_INSTALL_DEPS = $(DEF_BUILDS:%=conf_install.%)
CONF_INSTALL_TARGS = conf_install
CONF_INSTALL_OBJ64 = $(CONF_INSTALL_TARGS:%=%.obj64)
CONF_INSTALL_DBG64 = $(CONF_INSTALL_TARGS:%=%.debug64)
$(CONF_INSTALL_OBJ64): FRC
@BUILD_TYPE=OBJ64 $(MAKE) $(INSTALL_TARGET)
$(CONF_INSTALL_DBG64): FRC
@BUILD_TYPE=DBG64 $(MAKE) $(INSTALL_TARGET)
#
# Turn on doubleword alignment for 64 bit registers
#
CFLAGS += -dalign
#
# Default build targets.
#
.KEEP_STATE:
def all clean clobber lint modlintlib clean.lint:
install: $(CONF_INSTALL_DEPS)
#
# Include common targets.
#
include $(UTSBASE)/sun4u/enchilada/Makefile.targ