4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
27 # Copyright 2011 Nexenta Systems, Inc. All rights reserved.
28 # Copyright (c) 2012 by Delphix. All rights reserved.
29 # Copyright (c) 2012 Joyent, Inc. All rights reserved.
94 $(NOT_RELEASE_BUILD)CPPFLAGS += -DDEBUG
95 CPPFLAGS += -D_MDB -I. -I../.. -I../../../common
100 LDLIBS += -lcurses -lkvm -lproc -lrtld_db -lctf -lumem -ldisasm -lscf
103 # -erroff=E_INCONS_ARG_DECL2 works around a problem where lint gets confused
104 # about how struct mdb_tgt_gregset is used in mdb_tgt_stack_f() and
105 # mdb_tgt_stack_iter_f(). Will be resolved as part of fix for CR 6749868.
107 LINTFLAGS += -n -errtags=yes -erroff=E_INCONS_ARG_DECL2
108 LINTFILES = $(SRCS:%.c=%.ln)
111 OBJS = $(SRCS:%.c=%.o) mdb_lex.o mdb_grammar.o
114 ROOTLINK = $(ROOTBIN)/$(LINK)
115 ROOTLINK32 = $(LINK:%=$(ROOTBIN32)/%)
116 ROOTLINK64 = $(LINK:%=$(ROOTBIN64)/%)
119 .PARALLEL: $(OBJS) $(LINTFILES)
124 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
125 $(CTFMERGE) -L VERSION -o $@ $(OBJS)
128 $(ROOTLINK32): $(ROOTPROG32)
130 $(LN) $(ROOTPROG32) $@
132 $(ROOTLINK64): $(ROOTPROG64)
134 $(LN) $(ROOTPROG64) $@
136 mdb_lex.c: ../../../common/mdb/mdb_lex.l mdb_grammar.h
137 $(LEX) $(LFLAGS) ../../../common/mdb/mdb_lex.l > $@
139 mdb_grammar.h mdb_grammar.c: ../../../common/mdb/mdb_grammar.y
140 $(YACC) $(YFLAGS) ../../../common/mdb/mdb_grammar.y
141 @$(MV) y.tab.h mdb_grammar.h
142 @$(MV) y.tab.c mdb_grammar.c
144 mdb_lex.o mdb_grammar.o := CCVERBOSE =
146 mdb_conf.o := CPPFLAGS += -DMDB_VERSION='$(MDB_VERSION)'
148 inet_ntop.o := CPPFLAGS += -Dsnprintf=mdb_snprintf
150 ffs.o ffs.ln := CPPFLAGS += -Dffs=mdb_ffs
152 %.o: ../../../common/mdb/%.c
164 %.o: $(SRC)/common/net/util/%.c
168 %.o: $(SRC)/common/util/%.c
177 $(RM) mdb_lex.c mdb_grammar.c mdb_grammar.h y.tab.h y.tab.c y.output
179 clobber: clean clean.lint
182 %.ln: ../../../common/mdb/%.c
191 %.ln: $(SRC)/common/net/util/%.c
194 %.ln: $(SRC)/common/util/%.c
198 $(LINT) $(LINTFLAGS) $(LINTFILES)