Makefile revision 4ebb14b236958cfe1ef4ff3b7a50216d9e51f997
#
# uts/sparc/cmlb/Makefile
#
# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
#ident "%Z%%M% %I% %E% SMI"
#
# This makefile drives the production of the cmlb "misc"
# kernel module.
#
#
#
# Path to the base of the uts directory tree (usually /usr/src/uts).
#
UTSBASE = ../..
#
# Define the module and object file sets.
#
MODULE = cmlb
OBJECTS = $(CMLB_OBJS:%=$(OBJS_DIR)/%)
LINTS = $(CMLB_OBJS:%.o=$(LINTS_DIR)/%.ln)
WARLOCK_OUT = $(CMLB_OBJS:%.o=%.ll)
WARLOCK_OK = $(MODULE).ok
ROOTMODULE = $(ROOT_MISC_DIR)/$(MODULE)
#
# Include common rules.
#
include $(UTSBASE)/sparc/Makefile.sparc
#
# Define targets
#
ALL_TARGET = $(BINARY)
LINT_TARGET = $(MODULE).lint
INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
#
# Overrides.
#
DEBUG_FLGS =
DEBUG_DEFS += $(DEBUG_FLGS)
#
# 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_BAD_PTR_CAST_ALIGN
LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
LINTTAGS += -erroff=E_STATIC_UNUSED
LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
#
# Default build targets.
#
.KEEP_STATE:
def: $(DEF_DEPS)
all: $(ALL_DEPS)
clean: $(CLEAN_DEPS)
$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
clobber: $(CLOBBER_DEPS)
$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
lint: $(LINT_DEPS)
modlintlib: $(MODLINTLIB_DEPS)
clean.lint: $(CLEAN_LINT_DEPS)
install: $(INSTALL_DEPS)
#
# Include common targets.
#
include $(UTSBASE)/sparc/Makefile.targ
#
# Defines for local commands.
#
WLCC = wlcc
TOUCH = touch
WARLOCK = warlock
#
# Warlock targets
#
warlock: $(WARLOCK_OK)
$(WARLOCK_OK): $(WARLOCK_OUT)
$(TOUCH) $@
%.ll: $(UTSBASE)/common/io/%.c
$(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $<