54
55 #
56 # Overrides
57 #
58
59 #
60 # Build with no debug TNF probes enabled (by default)
61 #
62 #DEBUG_DEFS_DBG32 += -DTNF_DEBUG
63 #DEBUG_DEFS_DBG64 += -DTNF_DEBUG
64
65 #
66 # lint pass one enforcement
67 #
68 CFLAGS += $(CCVERBOSE)
69
70 CERRWARN += -_gcc=-Wno-switch
71 CERRWARN += -_gcc=-Wno-unused-value
72 CERRWARN += -_gcc=-Wno-unused-label
73 CERRWARN += -_gcc=-Wno-parentheses
74 CERRWARN += -_gcc=-Wno-uninitialized
75
76 # needs work
77 SMATCH=off
78
79 #
80 # Default build targets.
81 #
82 .KEEP_STATE:
83
84 def: $(DEF_DEPS)
85
86 all: $(ALL_DEPS)
87
88 clean: $(CLEAN_DEPS)
89
90 clobber: $(CLOBBER_DEPS)
91
92 lint: $(LINT_DEPS)
93
94 modlintlib: $(MODLINTLIB_DEPS)
|
54
55 #
56 # Overrides
57 #
58
59 #
60 # Build with no debug TNF probes enabled (by default)
61 #
62 #DEBUG_DEFS_DBG32 += -DTNF_DEBUG
63 #DEBUG_DEFS_DBG64 += -DTNF_DEBUG
64
65 #
66 # lint pass one enforcement
67 #
68 CFLAGS += $(CCVERBOSE)
69
70 CERRWARN += -_gcc=-Wno-switch
71 CERRWARN += -_gcc=-Wno-unused-value
72 CERRWARN += -_gcc=-Wno-unused-label
73 CERRWARN += -_gcc=-Wno-parentheses
74 CERRWARN += $(CNOWARN_UNINIT)
75
76 # needs work
77 SMATCH=off
78
79 #
80 # Default build targets.
81 #
82 .KEEP_STATE:
83
84 def: $(DEF_DEPS)
85
86 all: $(ALL_DEPS)
87
88 clean: $(CLEAN_DEPS)
89
90 clobber: $(CLOBBER_DEPS)
91
92 lint: $(LINT_DEPS)
93
94 modlintlib: $(MODLINTLIB_DEPS)
|