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]
18 #
19 # CDDL HEADER END
20 #
21 #
22 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 # Copyright 2018 Jason King
26 #
27
28 PROG= dis
29 OBJS= dis_target.o dis_main.o dis_util.o dis_list.o
30 SRCS= $(OBJS:%.o=%.c)
31
32 include ../Makefile.cmd
33
34 LDLIBS += -ldisasm -luutil -lelf -ldemangle-sys
35 CERRWARN += -_gcc=-Wno-uninitialized
36
37 .KEEP_STATE:
38
39 all: $(PROG)
40
41 $(PROG): $(OBJS)
42 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
43 $(POST_PROCESS)
44
45 install: all $(ROOTPROG) $(ROOTCCSBINLINK)
46
47 clean:
48 $(RM) $(OBJS) $(PROG)
49
50 lint: lint_SRCS
51
52 include ../Makefile.targ
53 include ../Makefile.ctf
|
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]
18 #
19 # CDDL HEADER END
20 #
21 #
22 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 # Copyright 2018 Jason King
26 #
27
28 PROG= dis
29 OBJS= dis_target.o dis_main.o dis_util.o dis_list.o
30 SRCS= $(OBJS:%.o=%.c)
31
32 include ../Makefile.cmd
33
34 LDLIBS += -ldisasm -luutil -lelf -ldemangle-sys
35 CERRWARN += $(CNOWARN_UNINIT)
36
37 .KEEP_STATE:
38
39 all: $(PROG)
40
41 $(PROG): $(OBJS)
42 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
43 $(POST_PROCESS)
44
45 install: all $(ROOTPROG) $(ROOTCCSBINLINK)
46
47 clean:
48 $(RM) $(OBJS) $(PROG)
49
50 lint: lint_SRCS
51
52 include ../Makefile.targ
53 include ../Makefile.ctf
|