Makefile revision 210db2243d3b5ca39c96a4c34c6d9453ddfbeaa9
353N/A#
353N/A# CDDL HEADER START
353N/A#
353N/A# The contents of this file are subject to the terms of the
353N/A# Common Development and Distribution License, Version 1.0 only
353N/A# (the "License"). You may not use this file except in compliance
353N/A# with the License.
353N/A#
353N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
353N/A# or http://www.opensolaris.org/os/licensing.
353N/A# See the License for the specific language governing permissions
353N/A# and limitations under the License.
353N/A#
353N/A# When distributing Covered Code, include this CDDL HEADER in each
353N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
353N/A# If applicable, add the following below this CDDL HEADER, with the
353N/A# fields enclosed by brackets "[]" replaced with your own identifying
353N/A# information: Portions Copyright [yyyy] [name of copyright owner]
353N/A#
353N/A# CDDL HEADER END
353N/A#
353N/A#
3763N/A# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
353N/A# Use is subject to license terms.
353N/A#
353N/A#ident "%Z%%M% %I% %E% SMI"
353N/A
2695N/A#
2695N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
353N/A#
353N/AUTSBASE = ../..
2695N/A
618N/A#
353N/A# Define the module and object file sets.
2695N/A#
844N/AMODULE = ght
2695N/AOBJECTS = $(GHT_OBJS:%=$(OBJS_DIR)/%)
353N/ALINTS = $(GHT_OBJS:%.o=$(LINTS_DIR)/%.ln)
1298N/AROOTMODULE = $(ROOT_MISC_DIR)/$(MODULE)
3763N/A
353N/A#
3996N/A# Include common rules.
353N/A#
353N/Ainclude $(UTSBASE)/intel/Makefile.intel
3996N/A
3996N/A#
353N/A# Define targets
4411N/A#
4411N/AALL_TARGET = $(BINARY)
4411N/ALINT_TARGET = $(MODULE).lint
2695N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
2695N/A
4411N/A#
4411N/A# Overrides.
4411N/A#
2695N/ACFLAGS += $(CCVERBOSE)
2695N/A
353N/A#
4411N/A# Default build targets.
4411N/A#
4411N/A.KEEP_STATE:
353N/A
353N/Adef: $(DEF_DEPS)
353N/A
353N/Aall: $(ALL_DEPS)
353N/A
2695N/Aclean: $(CLEAN_DEPS)
353N/A
2695N/Aclobber: $(CLOBBER_DEPS)
2695N/A
353N/Alint: $(LINT_DEPS)
2695N/A
353N/Amodlintlib: $(MODLINTLIB_DEPS)
2695N/A
353N/Aclean.lint: $(CLEAN_LINT_DEPS)
2695N/A
353N/Ainstall: $(INSTALL_DEPS)
353N/A
353N/A#
353N/A# Include common targets.
3996N/A#
3996N/Ainclude $(UTSBASE)/intel/Makefile.targ
3996N/A