Print this page
9884 cw(1) should use -fpic rather than -Kpic
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/fm/libmdesc/Makefile.com
+++ new/usr/src/lib/fm/libmdesc/Makefile.com
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 (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21 #
22 22 # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 23 #
24 24
25 25 LIBRARY = libmdesc.a
26 26 VERS = .1
27 27
28 28 LIBSRCS = \
29 29 mdesc_fini.c \
30 30 mdesc_findname.c \
31 31 mdesc_findnodeprop.c \
32 32 mdesc_getproparcs.c \
33 33 mdesc_getpropdata.c \
34 34 mdesc_getpropstr.c \
35 35 mdesc_getpropval.c \
36 36 mdesc_init_intern.c \
37 37 mdesc_nodecount.c \
38 38 mdesc_scandag.c \
39 39 mdesc_walkdag.c
40 40
41 41 OBJECTS = $(LIBSRCS:%.c=%.o)
42 42
↓ open down ↓ |
42 lines elided |
↑ open up ↑ |
43 43 include ../../../Makefile.lib
44 44 include ../../Makefile.lib
45 45
46 46 SRCS = $(LIBSRCS:%.c=$(SRC)/common/mdesc/%.c)
47 47
48 48 LIBS = $(DYNLIB) $(LINTLIB)
49 49
50 50 SRCDIR = ../common
51 51
52 52 CPPFLAGS += -I../common -I.
53 -CFLAGS += $(CCVERBOSE) -K PIC
54 -CFLAGS64 += $(CCVERBOSE) -K PIC
53 +CFLAGS += $(CCVERBOSE) $(C_BIGPICFLAGS)
54 +CFLAGS64 += $(CCVERBOSE) $(C_BIGPICFLAGS64)
55 55 LDLIBS += -lc
56 56
57 57 LINTFLAGS += -erroff=E_BAD_PTR_CAST_ALIGN -v
58 58 LINTFLAGS64 += -erroff=E_BAD_PTR_CAST_ALIGN -v
59 59 $(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC)
60 60 $(LINTLIB) := LINTFLAGS = -nsvx
61 61 $(LINTLIB) := LINTFLAGS64 = -nsvx -m64
62 62
63 63 .KEEP_STATE:
64 64
65 65 all: $(LIBS)
66 66
67 67 lint: $(LINTLIB) lintcheck
68 68
69 69 pics/%.o: $(SRC)/common/mdesc/%.c
70 70 $(COMPILE.c) -o $@ $<
71 71 $(POST_PROCESS_O)
72 72
73 73 %.ln: $(SRC)/common/mdesc/%.c
74 74 $(LINT.c) -o $@ $<
75 75
76 76 include ../../../Makefile.targ
77 77 include ../../Makefile.targ
↓ open down ↓ |
13 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX