48 #
49 include $(UTSBASE)/intel/Makefile.intel
50
51 #
52 # Define targets
53 #
54 ALL_TARGET = $(BINARY)
55 LINT_TARGET = $(MODULE).lint
56 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
57
58 # Module specific debug flag
59 #
60 CPPFLAGS += -DEIB_DEBUG
61
62 #
63 # Lint pass one enforcement
64 #
65 CFLAGS += $(CCVERBOSE)
66
67 CERRWARN += -_gcc=-Wno-switch
68 CERRWARN += -_gcc=-Wno-uninitialized
69
70 # needs work
71 $(OBJS_DIR)/eib_ibt.o := SMOFF += deref_check
72
73 #
74 # Depends on misc/ibtl
75 #
76 LDFLAGS += -dy -Nmisc/mac -Nmisc/ibtl -Nmisc/ibcm -Nmisc/ibmf
77
78 #
79 # Default build targets
80 #
81 .KEEP_STATE:
82
83 def: $(DEF_DEPS)
84
85 all: $(ALL_DEPS)
86
87 clean: $(CLEAN_DEPS)
88
|
48 #
49 include $(UTSBASE)/intel/Makefile.intel
50
51 #
52 # Define targets
53 #
54 ALL_TARGET = $(BINARY)
55 LINT_TARGET = $(MODULE).lint
56 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
57
58 # Module specific debug flag
59 #
60 CPPFLAGS += -DEIB_DEBUG
61
62 #
63 # Lint pass one enforcement
64 #
65 CFLAGS += $(CCVERBOSE)
66
67 CERRWARN += -_gcc=-Wno-switch
68 CERRWARN += $(CNOWARN_UNINIT)
69
70 # needs work
71 $(OBJS_DIR)/eib_ibt.o := SMOFF += deref_check
72
73 #
74 # Depends on misc/ibtl
75 #
76 LDFLAGS += -dy -Nmisc/mac -Nmisc/ibtl -Nmisc/ibcm -Nmisc/ibmf
77
78 #
79 # Default build targets
80 #
81 .KEEP_STATE:
82
83 def: $(DEF_DEPS)
84
85 all: $(ALL_DEPS)
86
87 clean: $(CLEAN_DEPS)
88
|