# # uts/sparc/cmlb/Makefile # # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # #pragma 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) # # 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 # CMLB_FILES = $(CMLB_OBJS:%.o=%.ll) warlock: $(MODULE).ok %.ok: $(CMLB_FILES) $(TOUCH) $@ %.ll: $(UTSBASE)/common/io/%.c $(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $<