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/sun4u/snowbird/platmod/Makefile
+++ new/usr/src/uts/sun4u/snowbird/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 2005 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 28 # This makefile drives the production of the sun4u snowbird platform
31 29 # module.
32 30 #
33 31 # sun4u 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 = $(SNOWBIRD_OBJS:%=$(OBJS_DIR)/%)
46 44 LINTS = $(SNOWBIRD_OBJS:%.o=$(LINTS_DIR)/%.ln)
47 45 ROOTMODULE = $(ROOT_SNOWBIRD_MISC_DIR)/$(MODULE)
48 46
49 47 PLAT_DIR = .
50 48 HERE = ../snowbird/platmod
51 49
52 50 #
53 51 # Include common rules.
54 52 #
55 53 include $(UTSBASE)/sun4u/snowbird/Makefile.snowbird
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 # lint pass one enforcement
71 69 #
72 70 CFLAGS += $(CCVERBOSE)
73 71
74 72 #
75 73 # Default build targets.
76 74 #
77 75 .KEEP_STATE:
78 76
79 77 def: $(DEF_DEPS)
80 78
81 79 all: $(ALL_DEPS)
82 80
83 81 clean: $(CLEAN_DEPS)
84 82
85 83 clobber: $(CLOBBER_DEPS)
86 84
87 85 lint: $(LINT_DEPS)
88 86
↓ open down ↓ |
51 lines elided |
↑ open up ↑ |
89 87 modlintlib: $(MODLINTLIB_DEPS)
90 88
91 89 clean.lint: $(CLEAN_LINT_DEPS)
92 90
93 91 install: $(INSTALL_DEPS)
94 92
95 93 check:
96 94
97 95 LINT_LIB_DIR = $(SNOWBIRD_LINT_LIB_DIR)
98 96
99 -$(PLATLIB): $(BINARY)
100 - $(BUILD.SO) $(BINARY)
97 +$(PLATLIB): $(OBJECTS)
98 + $(BUILD.SO) $(OBJECTS)
101 99
102 100 $(SYM_MOD): $(UNIX_O) $(PLATLIB)
103 101 @echo "resolving symbols against unix.o"
104 102 @(cd $(UNIX_DIR); pwd; \
105 103 PLAT_DIR=$(HERE) SYM_MOD=$(HERE)/$(SYM_MOD) $(MAKE) symcheck)
106 104
107 105 #
108 106 # Include common targets.
109 107 #
110 108 include $(UTSBASE)/sun4u/snowbird/Makefile.targ
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX