Print this page
4108 remove ON_CRYPTO_BINS from tools
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/tools/Makefile
+++ new/usr/src/tools/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
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 (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
24 24 #
25 25
↓ open down ↓ |
25 lines elided |
↑ open up ↑ |
26 26 include ../Makefile.master
27 27
28 28 # Bootstrap problem --
29 29 # 'cw' must be built before anything else can be built.
30 30
31 31 BOOT_SUBDIRS= \
32 32 cw
33 33
34 34 COMMON_SUBDIRS= \
35 35 codereview \
36 - codesign \
37 36 cscope-fast \
38 37 ctf \
39 38 depcheck \
40 39 env \
41 40 findunref \
42 41 ndrgen \
43 42 onbld \
44 43 pmodes \
45 44 gk \
46 45 install.bin \
47 46 lintdump \
48 47 protocmp \
49 48 protolist \
50 49 scripts
51 50
52 51 #
53 52 # special versions of commands for use only in build
54 53 #
55 54 UNSHIPPED_SUBDIRS = \
56 55 elfsign
57 56
58 57 sparc_SUBDIRS= \
59 58 chk4ubin \
60 59 stabs \
61 60 tokenize
62 61
63 62 i386_SUBDIRS= \
64 63 aw \
65 64 elfextract \
66 65 mbh_patch
67 66
68 67 LINTSUBDIRS= \
69 68 codereview \
70 69 ctf \
71 70 cw \
72 71 findunref \
73 72 lintdump \
74 73 ndrgen \
75 74 protocmp \
76 75 protolist
77 76
78 77 SUBDIRS= \
79 78 $($(MACH)_SUBDIRS) \
80 79 $(COMMON_SUBDIRS) \
81 80 $(UNSHIPPED_SUBDIRS)
82 81
83 82 include Makefile.tools
84 83
85 84 ROOTDIRS= \
86 85 $(ROOTOPT) \
87 86 $(ROOTONBLD) \
88 87 $(ROOTONBLD)/bin \
89 88 $(ROOTONBLD)/bin/$(MACH) \
90 89 $(ROOTONBLD)/lib \
91 90 $(ROOTONBLD)/lib/$(MACH) \
92 91 $(ROOTONBLD)/lib/perl \
93 92 $(ROOTONBLD)/lib/python2.6 \
94 93 $(ROOTONBLD)/lib/python2.6/onbld \
95 94 $(ROOTONBLD)/lib/python2.6/onbld/Checks \
96 95 $(ROOTONBLD)/lib/python2.6/onbld/hgext \
97 96 $(ROOTONBLD)/lib/python2.6/onbld/Scm \
98 97 $(ROOTONBLD)/env \
99 98 $(ROOTONBLD)/etc \
100 99 $(ROOTONBLD)/etc/exception_lists \
101 100 $(ROOTONBLD)/gk \
102 101 $(ROOTONBLD)/man \
103 102 $(ROOTONBLD)/man/man1
104 103
105 104 all := TARGET= install
106 105 install := TARGET= install
107 106 clean := TARGET= clean
108 107 clobber := TARGET= clobber
109 108 lint := TARGET= lint
110 109 _msg := TARGET= _msg
111 110
112 111 .KEEP_STATE:
113 112
114 113 #
115 114 # Only create directories in the tools proto area when doing an actual
116 115 # build, not a clean or clobber.
117 116 #
118 117 DOROOTDIRS= $(ROOTDIRS)
119 118 clobber:= DOROOTDIRS=
120 119 clean:= DOROOTDIRS=
121 120
122 121 all install: $(SUBDIRS)
123 122
124 123 clean: $(SUBDIRS)
125 124
126 125 clobber: $(SUBDIRS)
127 126 $(RM) -rf $(TOOLS_PROTO)
128 127
129 128 lint: $(LINTSUBDIRS)
130 129
131 130 _msg: $(MSGSUBDIRS)
132 131
133 132 .PARALLEL: $(SUBDIRS) $(CLOSED_SUBDIRS)
134 133
135 134 $(SUBDIRS) $(CLOSED_SUBDIRS): $(BOOT_SUBDIRS)
136 135
137 136 $(BOOT_SUBDIRS) $(SUBDIRS): $$(DOROOTDIRS) $(ROOTONBLDLIBPY) FRC
138 137 @cd $@; pwd; $(MAKE) $(TARGET)
139 138
140 139 $(ROOTDIRS):
141 140 $(INS.dir)
142 141
143 142 $(ROOTONBLDLIBPY): $(ROOTDIRS)
144 143 $(RM) -r $@; $(SYMLINK) python2.6 $@
145 144
146 145 FRC:
↓ open down ↓ |
100 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX