Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews#
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# CDDL HEADER START
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews#
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# The contents of this file are subject to the terms of the
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# Common Development and Distribution License (the "License").
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# You may not use this file except in compliance with the License.
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews#
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# or http://www.opensolaris.org/os/licensing.
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# See the License for the specific language governing permissions
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# and limitations under the License.
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews#
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# When distributing Covered Code, include this CDDL HEADER in each
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# If applicable, add the following below this CDDL HEADER, with the
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# fields enclosed by brackets "[]" replaced with your own identifying
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# information: Portions Copyright [yyyy] [name of copyright owner]
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews#
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews# CDDL HEADER END
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews#
0d6328ce5f6b799f8e7c6cbbb3b965cf29bfb7baMark Andrews#
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
UTSBASE = ../..
MODULE = ctf
OBJECTS = $(CTF_OBJS:%=$(OBJS_DIR)/%)
LINTS = $(CTF_OBJS:%.o=$(LINTS_DIR)/%.ln)
ROOTMODULE = $(ROOT_MISC_DIR)/$(MODULE)
include $(UTSBASE)/sparc/Makefile.sparc
ALL_TARGET = $(BINARY)
LINT_TARGET = $(MODULE).lint
INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
CFLAGS += $(CCVERBOSE)
CPPFLAGS += -I$(SRC)/common/ctf -DCTF_OLD_VERSIONS
LDFLAGS += $(BREDUCE) -M$(UTSBASE)/common/ctf/mapfile -dy
#
# For now, disable these lint checks; maintainers should endeavor
# to investigate and remove these for maximum lint coverage.
# Please do not carry these forward to new Makefiles.
#
LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
CERRWARN += -_gcc=-Wno-uninitialized
.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 $(UTSBASE)/sparc/Makefile.targ