58 LINT_TARGET = $(MODULE).lint
59 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
60
61 #
62 # Linkage dependencies
63 #
64 LDFLAGS += -dy -Nmisc/kcf
65
66 CPPFLAGS += -I$(COM_DIR)
67 CPPFLAGS += -DCRYPTO_PROVIDER_NAME=\"$(MODULE)\"
68
69 #
70 # For now, disable these lint checks; maintainers should endeavor
71 # to investigate and remove these for maximum lint coverage.
72 # Please do not carry these forward to new Makefiles.
73 #
74 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
75 LINTTAGS += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
76 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
77
78 CERRWARN += -_gcc=-Wno-uninitialized
79 CERRWARN += -_gcc=-Wno-parentheses
80
81 # needs work
82 $(OBJS_DIR)/blowfish_impl.o := SMOFF += precedence
83
84 #
85 # Default build targets.
86 #
87 .KEEP_STATE:
88
89 def: $(DEF_DEPS)
90
91 all: $(ALL_DEPS)
92
93 clean: $(CLEAN_DEPS)
94
95 clobber: $(CLOBBER_DEPS)
96
97 lint: $(LINT_DEPS)
98
|
58 LINT_TARGET = $(MODULE).lint
59 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
60
61 #
62 # Linkage dependencies
63 #
64 LDFLAGS += -dy -Nmisc/kcf
65
66 CPPFLAGS += -I$(COM_DIR)
67 CPPFLAGS += -DCRYPTO_PROVIDER_NAME=\"$(MODULE)\"
68
69 #
70 # For now, disable these lint checks; maintainers should endeavor
71 # to investigate and remove these for maximum lint coverage.
72 # Please do not carry these forward to new Makefiles.
73 #
74 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
75 LINTTAGS += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
76 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
77
78 CERRWARN += $(CNOWARN_UNINIT)
79 CERRWARN += -_gcc=-Wno-parentheses
80
81 # needs work
82 $(OBJS_DIR)/blowfish_impl.o := SMOFF += precedence
83
84 #
85 # Default build targets.
86 #
87 .KEEP_STATE:
88
89 def: $(DEF_DEPS)
90
91 all: $(ALL_DEPS)
92
93 clean: $(CLEAN_DEPS)
94
95 clobber: $(CLOBBER_DEPS)
96
97 lint: $(LINT_DEPS)
98
|