Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
235N/A#
235N/A# CDDL HEADER START
235N/A#
235N/A# The contents of this file are subject to the terms of the
235N/A# Common Development and Distribution License (the "License").
235N/A# You may not use this file except in compliance with the License.
235N/A#
235N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
235N/A# or http://www.opensolaris.org/os/licensing.
235N/A# See the License for the specific language governing permissions
235N/A# and limitations under the License.
235N/A#
235N/A# When distributing Covered Code, include this CDDL HEADER in each
235N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
235N/A# If applicable, add the following below this CDDL HEADER, with the
235N/A# fields enclosed by brackets "[]" replaced with your own identifying
235N/A# information: Portions Copyright [yyyy] [name of copyright owner]
235N/A#
235N/A# CDDL HEADER END
235N/A#
235N/A#
235N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
235N/A# Use is subject to license terms.
235N/A#
235N/A
235N/AUTSBASE = ../..
235N/A
235N/AMODULE = dtrace
235N/AOBJECTS = $(DTRACE_OBJS:%=$(OBJS_DIR)/%)
235N/ALINTS = $(DTRACE_OBJS:%.o=$(LINTS_DIR)/%.ln)
235N/AROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
235N/ACONF_SRCDIR = $(UTSBASE)/common/dtrace
235N/A
241N/Ainclude $(UTSBASE)/intel/Makefile.intel
235N/A
235N/A#
235N/A# For now, disable these lint checks; maintainers should endeavor
235N/A# to investigate and remove these for maximum lint coverage.
235N/A# Please do not carry these forward to new Makefiles.
235N/A#
235N/ALINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
235N/ALINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
235N/ALINTTAGS += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
235N/ALINTTAGS += -erroff=E_STATIC_UNUSED
235N/ALINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
235N/ALINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
235N/A
235N/ACERRWARN += -_gcc=-Wno-parentheses
235N/ACERRWARN += -_gcc=-Wno-type-limits
235N/ACERRWARN += -_gcc=-Wno-uninitialized
235N/A
235N/AALL_TARGET = $(BINARY) $(SRC_CONFILE)
235N/ALINT_TARGET = $(MODULE).lint
235N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
235N/AAS_INC_PATH += -I$(DSF_DIR)/$(OBJS_DIR)
235N/A
235N/AASSYM_H = $(DSF_DIR)/$(OBJS_DIR)/assym.h
235N/A
235N/A.KEEP_STATE:
235N/A
235N/Adef: $(DEF_DEPS)
235N/A
235N/Aall: $(ALL_DEPS)
235N/A
235N/Aclean: $(CLEAN_DEPS)
235N/A
235N/Aclobber: $(CLOBBER_DEPS)
235N/A
235N/Alint: $(LINT_DEPS)
235N/A
235N/Amodlintlib: $(MODLINTLIB_DEPS)
235N/A
235N/Aclean.lint: $(CLEAN_LINT_DEPS)
235N/A
235N/Ainstall: $(INSTALL_DEPS)
235N/A
235N/A$(BINARY): $(ASSYM_H)
235N/A
235N/Ainclude $(UTSBASE)/intel/Makefile.targ
235N/A