diff options
Diffstat (limited to 'usr/src/uts/intel/ibdm')
-rw-r--r-- | usr/src/uts/intel/ibdm/Makefile | 30 |
1 files changed, 3 insertions, 27 deletions
diff --git a/usr/src/uts/intel/ibdm/Makefile b/usr/src/uts/intel/ibdm/Makefile index c957274d71..0dca661c45 100644 --- a/usr/src/uts/intel/ibdm/Makefile +++ b/usr/src/uts/intel/ibdm/Makefile @@ -40,8 +40,6 @@ MODULE = ibdm OBJECTS = $(IBDM_OBJS:%=$(OBJS_DIR)/%) LINTS = $(IBDM_OBJS:%.o=$(LINTS_DIR)/%.ln) ROOTMODULE = $(ROOT_MISC_DIR)/$(MODULE) -WARLOCK_OUT = $(IBDM_OBJS:%.o=%.ll) -WARLOCK_OK = $(MODULE).ok # # Include common rules. @@ -59,9 +57,9 @@ INSTALL_TARGET = $(BINARY) $(ROOTMODULE) # Overrides. # -# -# lint pass one enforcement -# +# +# lint pass one enforcement +# CFLAGS += $(CCVERBOSE) # @@ -89,10 +87,8 @@ 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) @@ -106,23 +102,3 @@ install: $(INSTALL_DEPS) # Include common targets. # include $(UTSBASE)/intel/Makefile.targ - - -# -# Defines for local commands. -# -WARLOCK = warlock -WLCC = wlcc -TOUCH = touch -TEST = test - -warlock: $(WARLOCK_OK) - - -$(WARLOCK_OK): $(WARLOCK_OUT) - $(TOUCH) $@ - -%.ll: $(UTSBASE)/common/io/ib/mgt/ibdm/%.c \ - $(UTSBASE)/common/sys/ib/mgt/ibdm/ibdm_impl.h \ - $(UTSBASE)/common/sys/ib/mgt/ibdm/ibdm_ibnex.h - $(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $< |