Print this page
5468 Missing dependencies in lib/Makefile
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/abi/spectrans/spec2trace/Makefile.targ
+++ new/usr/src/cmd/abi/spectrans/spec2trace/Makefile.targ
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License, Version 1.0 only
6 6 # (the "License"). You may not use this file except in compliance
7 7 # with the License.
8 8 #
9 9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 10 # or http://www.opensolaris.org/os/licensing.
11 11 # See the License for the specific language governing permissions
12 12 # and limitations under the License.
13 13 #
14 14 # When distributing Covered Code, include this CDDL HEADER in each
15 15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
↓ open down ↓ |
15 lines elided |
↑ open up ↑ |
16 16 # If applicable, add the following below this CDDL HEADER, with the
17 17 # fields enclosed by brackets "[]" replaced with your own identifying
18 18 # information: Portions Copyright [yyyy] [name of copyright owner]
19 19 #
20 20 # CDDL HEADER END
21 21 #
22 22 #
23 23 # Copyright (c) 1997-1999 by Sun Microsystems, Inc.
24 24 # All rights reserved.
25 25 #
26 +# Copyright 2015 RackTop Systems.
27 +#
26 28
27 29 .KEEP_STATE:
28 30
29 31 PROG = spec2trace
30 32
31 33 YACC_OBJS = parseproto.o
32 34
33 35 OBJECTS = trace.o \
34 36 util.o \
35 37 db.o \
36 38 symtab.o \
37 39 bindings.o \
38 40 printfuncs.o \
39 41 io.o \
40 42 linkage.o \
41 43 interceptor.o
42 44
↓ open down ↓ |
7 lines elided |
↑ open up ↑ |
43 45 include ../../Makefile.cmd
44 46
45 47 CERRWARN += -_gcc=-Wno-parentheses
46 48 CERRWARN += -_gcc=-Wno-switch
47 49 CERRWARN += -_gcc=-Wno-unused-variable
48 50 CERRWARN += -_gcc=-Wno-unused-label
49 51
50 52 parseproto := RM = @echo keeping # do not remove generated C code
51 53 parseproto := COPTFLAG = -g -DDEBUG -DMEM_DEBUG -DTRACE
52 54 parseproto: parseproto.o
53 - $(LINK.c) -o parseproto parseproto.o
55 + $(LINK.c) -o parseproto parseproto.o $(LDLIBS)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX