Print this page
10593 illumos build should not use kernel modules as link-editor input
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/uts/sun4v/montoya/platmod/Makefile
+++ new/usr/src/uts/sun4v/montoya/platmod/Makefile
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
↓ open down ↓ |
15 lines elided |
↑ open up ↑ |
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 #
23 23 # Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 24 # Use is subject to license terms.
25 25 #
26 -# ident "%Z%%M% %I% %E% SMI"
27 -#
28 26
29 27 #
30 -# This makefile drives the production of the sun4v montoya default
28 +# This makefile drives the production of the sun4v montoya default
31 29 # platform module.
32 30 #
33 31 # sun4v implementation architecture dependent
34 32 #
35 33
36 34 #
37 35 # Path to the base of the uts directory tree (usually /usr/src/uts).
38 36 #
39 37 UTSBASE = ../../..
40 38
41 39 #
42 40 # Define the module and object file sets.
43 41 #
44 42 MODULE = platmod
45 43 OBJECTS = $(MONTOYA_PLATMOD_OBJS:%=$(OBJS_DIR)/%)
46 44 LINTS = $(MONTOYA_PLATMOD_OBJS:%.o=$(LINTS_DIR)/%.ln)
47 45 ROOTMODULE = $(ROOT_MONTOYA_MISC_DIR)/$(MODULE)
48 46
49 47 PLAT_DIR = .
50 48 HERE = ../platmod
51 49
52 50 #
53 51 # Include common rules.
54 52 #
55 53 include $(UTSBASE)/sun4v/montoya/Makefile.montoya
56 54
57 55 #
58 56 # Override defaults
59 57 #
60 58 CLEANFILES += $(PLATLIB) $(SYM_MOD)
61 59
62 60 #
63 61 # Define targets
64 62 #
65 63 ALL_TARGET = $(SYM_MOD)
66 64 LINT_TARGET = $(MODULE).lint
67 65 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
68 66
69 67 #
70 68 # Overrides
71 69 #
72 70 ALL_BUILDS = $(ALL_BUILDSONLY64)
73 71 DEF_BUILDS = $(DEF_BUILDSONLY64)
74 72 CLEANLINTFILES += $(LINT32_FILES)
75 73
76 74 #
77 75 # lint pass one enforcement
78 76 #
79 77 CFLAGS += $(CCVERBOSE)
80 78
81 79 #
82 80 # Default build targets.
83 81 #
84 82 .KEEP_STATE:
85 83
86 84 def: $(DEF_DEPS)
87 85
88 86 all: $(ALL_DEPS)
89 87
90 88 clean: $(CLEAN_DEPS)
91 89
92 90 clobber: $(CLOBBER_DEPS)
93 91
↓ open down ↓ |
53 lines elided |
↑ open up ↑ |
94 92 lint: $(LINT_DEPS)
95 93
96 94 modlintlib: $(MODLINTLIB_DEPS)
97 95
98 96 clean.lint: $(CLEAN_LINT_DEPS)
99 97
100 98 install: $(INSTALL_DEPS)
101 99
102 100 check:
103 101
104 -LINT_LIB_DIR =$(MONTOYA_LINT_LIB_DIR)
102 +LINT_LIB_DIR = $(MONTOYA_LINT_LIB_DIR)
105 103
106 -$(PLATLIB): $(BINARY)
107 - $(BUILD.SO) $(BINARY)
104 +$(PLATLIB): $(OBJECTS)
105 + $(BUILD.SO) $(OBJECTS)
108 106
109 107 $(SYM_MOD): $(UNIX_O) $(PLATLIB)
110 108 @echo "resolving symbols against unix.o"
111 109 @(cd $(UNIX_DIR); pwd; \
112 110 PLAT_DIR=$(HERE) SYM_MOD=$(HERE)/$(SYM_MOD) $(MAKE) symcheck)
113 111
114 112 #
115 113 # Include common targets.
116 114 #
117 115 include $(UTSBASE)/sun4v/montoya/Makefile.targ
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX