92 mdb_vcb.c \
93 mdb_wcb.c \
94 mdb_whatis.c
95
96 $(NOT_RELEASE_BUILD)CPPFLAGS += -DDEBUG
97 CPPFLAGS += -D_MDB -I. -I../.. -I../../../common
98
99 CSTD= $(CSTD_GNU99)
100 C99LMODE= -Xc99=%all
101
102 LDLIBS += -lcurses -lkvm -lproc -lrtld_db -lctf -lumem -ldisasm -lscf
103 LDLIBS += -ldemangle-sys
104
105 CERRWARN += -_gcc=-Wno-uninitialized
106 CERRWARN += -_gcc=-Wno-char-subscripts
107 CERRWARN += -_gcc=-Wno-clobbered
108 CERRWARN += -_gcc=-Wno-parentheses
109 CERRWARN += -_gcc=-Wno-unused-label
110 CERRWARN += -_gcc=-Wno-unused-variable
111
112 #
113 # -erroff=E_INCONS_ARG_DECL2 works around a problem where lint gets confused
114 # about how struct mdb_tgt_gregset is used in mdb_tgt_stack_f() and
115 # mdb_tgt_stack_iter_f(). Will be resolved as part of fix for CR 6749868.
116 #
117 LINTFLAGS += -n -errtags=yes -erroff=E_INCONS_ARG_DECL2
118 LINTFILES = $(SRCS:%.c=%.ln)
119
120 PROG = mdb
121 OBJS = $(SRCS:%.c=%.o) mdb_lex.o mdb_grammar.o
122
123 LINK = adb
124 ROOTLINK = $(ROOTBIN)/$(LINK)
125 ROOTLINK32 = $(LINK:%=$(ROOTBIN32)/%)
126 ROOTLINK64 = $(LINK:%=$(ROOTBIN64)/%)
127
128 .NO_PARALLEL:
129 .PARALLEL: $(OBJS) $(LINTFILES)
130
131 all: $(PROG)
|
92 mdb_vcb.c \
93 mdb_wcb.c \
94 mdb_whatis.c
95
96 $(NOT_RELEASE_BUILD)CPPFLAGS += -DDEBUG
97 CPPFLAGS += -D_MDB -I. -I../.. -I../../../common
98
99 CSTD= $(CSTD_GNU99)
100 C99LMODE= -Xc99=%all
101
102 LDLIBS += -lcurses -lkvm -lproc -lrtld_db -lctf -lumem -ldisasm -lscf
103 LDLIBS += -ldemangle-sys
104
105 CERRWARN += -_gcc=-Wno-uninitialized
106 CERRWARN += -_gcc=-Wno-char-subscripts
107 CERRWARN += -_gcc=-Wno-clobbered
108 CERRWARN += -_gcc=-Wno-parentheses
109 CERRWARN += -_gcc=-Wno-unused-label
110 CERRWARN += -_gcc=-Wno-unused-variable
111
112 SMOFF += all_func_returns
113
114 #
115 # -erroff=E_INCONS_ARG_DECL2 works around a problem where lint gets confused
116 # about how struct mdb_tgt_gregset is used in mdb_tgt_stack_f() and
117 # mdb_tgt_stack_iter_f(). Will be resolved as part of fix for CR 6749868.
118 #
119 LINTFLAGS += -n -errtags=yes -erroff=E_INCONS_ARG_DECL2
120 LINTFILES = $(SRCS:%.c=%.ln)
121
122 PROG = mdb
123 OBJS = $(SRCS:%.c=%.o) mdb_lex.o mdb_grammar.o
124
125 LINK = adb
126 ROOTLINK = $(ROOTBIN)/$(LINK)
127 ROOTLINK32 = $(LINK:%=$(ROOTBIN32)/%)
128 ROOTLINK64 = $(LINK:%=$(ROOTBIN64)/%)
129
130 .NO_PARALLEL:
131 .PARALLEL: $(OBJS) $(LINTFILES)
132
133 all: $(PROG)
|