]>
Commit | Line | Data |
---|---|---|
eb02fd64 | 1 | # |
131a3881 | 2 | # Makefile for directory with subdirs to build. |
79337c85 | 3 | # Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation |
eb02fd64 | 4 | # |
4dfe09da RP |
5 | # This file is free software; you can redistribute it and/or modify |
6 | # it under the terms of the GNU General Public License as published by | |
7 | # the Free Software Foundation; either version 2 of the License, or | |
8 | # (at your option) any later version. | |
9 | # | |
10 | # This program is distributed in the hope that it will be useful, | |
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | # GNU General Public License for more details. | |
14 | # | |
15 | # You should have received a copy of the GNU General Public License | |
16 | # along with this program; if not, write to the Free Software | |
81597186 | 17 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
4dfe09da | 18 | # |
f149eb99 | 19 | |
eb02fd64 | 20 | srcdir = . |
28f3b094 | 21 | |
4d714963 | 22 | prefix = /usr/local |
eb02fd64 | 23 | |
7fcfdcf7 SC |
24 | exec_prefix = $(prefix) |
25 | bindir = $(exec_prefix)/bin | |
26 | libdir = $(exec_prefix)/lib | |
a54e05f6 | 27 | tooldir = $(exec_prefix)/$(target) |
7fcfdcf7 | 28 | |
51489233 ILT |
29 | program_transform_name = |
30 | ||
4d714963 | 31 | datadir = $(prefix)/lib |
7fcfdcf7 | 32 | mandir = $(prefix)/man |
4d714963 RP |
33 | man1dir = $(mandir)/man1 |
34 | man2dir = $(mandir)/man2 | |
35 | man3dir = $(mandir)/man3 | |
36 | man4dir = $(mandir)/man4 | |
37 | man5dir = $(mandir)/man5 | |
38 | man6dir = $(mandir)/man6 | |
39 | man7dir = $(mandir)/man7 | |
40 | man8dir = $(mandir)/man8 | |
41 | man9dir = $(mandir)/man9 | |
7fcfdcf7 | 42 | infodir = $(prefix)/info |
4d714963 RP |
43 | includedir = $(prefix)/include |
44 | docdir = $(datadir)/doc | |
04103845 | 45 | GDB_NLM_DEPS = |
4d714963 RP |
46 | |
47 | SHELL = /bin/sh | |
48 | ||
f35c6160 | 49 | INSTALL = $${srcroot}/install.sh -c |
4d714963 | 50 | INSTALL_PROGRAM = $(INSTALL) |
5cc73086 | 51 | INSTALL_DATA = $(INSTALL) -m 644 |
fe560b9f | 52 | INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)' |
3c8735af | 53 | |
09985c96 | 54 | INSTALL_DOSREL = install-dosrel-fake |
a987271c | 55 | |
440868a0 | 56 | AS = as |
ec342d7d | 57 | AR = ar |
b5329d84 | 58 | AR_FLAGS = rc |
e85e07cb | 59 | CC = cc |
7b636683 | 60 | |
66957ce4 ILT |
61 | # Special variables passed down in EXTRA_GCC_FLAGS. They are defined |
62 | # here so that they can be overridden by Makefile fragments. | |
753d5049 SC |
63 | HOST_CC = $(CC_FOR_BUILD) |
64 | HOST_PREFIX = | |
65 | HOST_PREFIX_1 = loser- | |
66 | ||
7b636683 JK |
67 | # We don't specify -g -O because many compilers don't support -g -O, |
68 | # and/or -O is broken in and of itself. | |
f8a6ad66 | 69 | CFLAGS = -g |
3585593d BK |
70 | LIBCFLAGS = $(CFLAGS) |
71 | CFLAGS_FOR_TARGET = $(CFLAGS) | |
72 | LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET) | |
04103845 DE |
73 | PICFLAG = |
74 | PICFLAG_FOR_TARGET = | |
7b636683 | 75 | |
a4e879a1 | 76 | # start-sanitize-chill |
7d9f0c54 MW |
77 | CHILLFLAGS = $(CFLAGS) |
78 | CHILL_LIB = -lchill | |
a4e879a1 | 79 | # end-sanitize-chill |
e85e07cb | 80 | CXX = gcc |
7b636683 | 81 | |
1d5fcc66 | 82 | # Use -O2 to stress test the compiler. |
864a5888 PB |
83 | CXXFLAGS = -g -O2 |
84 | LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates | |
3585593d | 85 | CXXFLAGS_FOR_TARGET = $(CXXFLAGS) |
2f64ef77 | 86 | LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates |
7b636683 | 87 | |
4d714963 | 88 | RANLIB = ranlib |
51489233 | 89 | NM = nm |
5cc73086 KR |
90 | # Not plain GZIP, since gzip looks there for extra command-line options. |
91 | GZIPPROG = gzip | |
eb02fd64 | 92 | |
40e16078 | 93 | # BISON: This line sed'ed to BISON = bison -y for FSF releases, don't remove. |
5cc73086 KR |
94 | BISON = `if [ -f $$r/byacc/byacc ] ; \ |
95 | then echo $$r/byacc/byacc ; \ | |
378fd382 | 96 | else echo byacc ; \ |
06a07944 | 97 | fi` |
2645fb0c | 98 | |
5cc73086 KR |
99 | LEX = `if [ -f $$r/flex/flex ] ; \ |
100 | then echo $$r/flex/flex ; \ | |
2198e4ba MT |
101 | else echo flex ; fi` |
102 | ||
5cc73086 KR |
103 | M4 = `if [ -f $$r/m4/m4 ] ; \ |
104 | then echo $$r/m4/m4 ; \ | |
65e21701 KR |
105 | else echo m4 ; fi` |
106 | ||
5cc73086 KR |
107 | MAKEINFO = `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \ |
108 | then echo $$r/texinfo/makeinfo/makeinfo ; \ | |
77806c3e | 109 | else echo makeinfo ; fi` |
484fa12d | 110 | |
9823504d ILT |
111 | # This just becomes part of the MAKEINFO definition passed down to |
112 | # sub-makes. It lets flags be given on the command line while still | |
113 | # using the makeinfo from the object tree. | |
114 | MAKEINFOFLAGS = | |
b772d75e | 115 | |
5cc73086 KR |
116 | EXPECT = `if [ -f $$r/expect/expect ] ; \ |
117 | then echo $$r/expect/expect ; \ | |
a54e05f6 KR |
118 | else echo expect ; fi` |
119 | ||
120 | RUNTEST = `if [ -f $${srcroot}/dejagnu/runtest ] ; \ | |
121 | then echo $${srcroot}/dejagnu/runtest ; \ | |
6a42d184 DZ |
122 | else echo runtest ; fi` |
123 | ||
f980fcfb | 124 | |
e85e07cb | 125 | # compilers to use to create programs which must be run in the build |
440868a0 ILT |
126 | # environment. |
127 | CC_FOR_BUILD = $(CC) | |
e85e07cb | 128 | CXX_FOR_BUILD = $(CXX) |
440868a0 | 129 | |
9f73dd6a | 130 | SUBDIRS = "this is set via configure, don't edit this" |
6a3958b2 RP |
131 | OTHERS = |
132 | ||
ca2ce3b3 ILT |
133 | # This is set by the configure script to the list of directories which |
134 | # should be built using the target tools. | |
ab1cbc67 | 135 | TARGET_CONFIGDIRS = libiberty libgloss newlib libio librx libstdc++ libg++ winsup |
ca2ce3b3 ILT |
136 | |
137 | # This is set by the configure script to the arguments passed to configure. | |
138 | CONFIG_ARGUMENTS = | |
139 | ||
a0f47eb7 | 140 | ALL = all.normal |
f35c6160 DZ |
141 | INSTALL_TARGET = install-dirs \ |
142 | $(INSTALL_MODULES) \ | |
143 | $(INSTALL_TARGET_MODULES) \ | |
144 | $(INSTALL_X11_MODULES) \ | |
753d5049 | 145 | install-gcc \ |
09985c96 | 146 | $(INSTALL_DOSREL) |
753d5049 | 147 | |
fb660409 | 148 | |
51489233 | 149 | CC_FOR_TARGET = ` \ |
5cc73086 | 150 | if [ -f $$r/gcc/Makefile ] ; then \ |
753d5049 SC |
151 | if [ -f $$r/newlib/Makefile ] ; then \ |
152 | echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/newlib/targ-include -idirafter $${srcroot}/newlib/libc/include -nostdinc; \ | |
153 | else \ | |
154 | echo $$r/gcc/xgcc -B$$r/gcc/; \ | |
155 | fi; \ | |
51489233 | 156 | else \ |
378fd382 | 157 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ |
51489233 ILT |
158 | echo $(CC); \ |
159 | else \ | |
ea6d5817 | 160 | t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \ |
51489233 ILT |
161 | fi; \ |
162 | fi` | |
163 | ||
a4e879a1 | 164 | # start-sanitize-chill |
7d9f0c54 | 165 | CHILL_FOR_TARGET = ` \ |
5cc73086 | 166 | if [ -f $$r/gcc/Makefile ] ; then \ |
04103845 | 167 | echo $$r/gcc/xgcc -B$$r/gcc/ -L$$r/gcc/ch/runtime/; \ |
7d9f0c54 MW |
168 | else \ |
169 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
170 | echo $(CC); \ | |
171 | else \ | |
ea6d5817 | 172 | t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \ |
7d9f0c54 MW |
173 | fi; \ |
174 | fi` | |
34b3298b | 175 | |
a4e879a1 | 176 | # end-sanitize-chill |
7d9f0c54 | 177 | |
d1bea4c7 | 178 | CXX_FOR_TARGET = ` \ |
5cc73086 | 179 | if [ -f $$r/gcc/Makefile ] ; then \ |
753d5049 SC |
180 | if [ -f $$r/newlib/Makefile ] ; then \ |
181 | echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/newlib/targ-include -idirafter $${srcroot}/newlib/libc/include -nostdinc; \ | |
182 | else \ | |
183 | echo $$r/gcc/xgcc -B$$r/gcc/; \ | |
184 | fi; \ | |
fca4f908 | 185 | else \ |
e85e07cb ILT |
186 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ |
187 | echo $(CXX); \ | |
fca4f908 | 188 | else \ |
ea6d5817 | 189 | t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \ |
fca4f908 MW |
190 | fi; \ |
191 | fi` | |
192 | ||
440868a0 | 193 | AS_FOR_TARGET = ` \ |
ea6d5817 | 194 | if [ -f $$r/gas/as.new ] ; then \ |
5cc73086 | 195 | echo $$r/gas/as.new ; \ |
440868a0 | 196 | else \ |
e85e07cb | 197 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ |
440868a0 ILT |
198 | echo $(AS); \ |
199 | else \ | |
ea6d5817 | 200 | t='$(program_transform_name)'; echo as | sed -e 's/x/x/' $$t ; \ |
81246025 | 201 | fi; \ |
440868a0 ILT |
202 | fi` |
203 | ||
054f9ada JM |
204 | LD_FOR_TARGET = ` \ |
205 | if [ -f $$r/ld/ld.new ] ; then \ | |
206 | echo $$r/ld/ld.new ; \ | |
207 | else \ | |
208 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
209 | echo $(LD); \ | |
210 | else \ | |
211 | t='$(program_transform_name)'; echo ld | sed -e 's/x/x/' $$t ; \ | |
212 | fi; \ | |
213 | fi` | |
214 | ||
a220ba0f SC |
215 | DLLTOOL_FOR_TARGET = ` \ |
216 | if [ -f $$r/binutils/dlltool ] ; then \ | |
217 | echo $$r/binutils/dlltool ; \ | |
218 | else \ | |
219 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
220 | echo $(DLLTOOL); \ | |
221 | else \ | |
222 | t='$(program_transform_name)'; echo dlltool | sed -e 's/x/x/' $$t ; \ | |
223 | fi; \ | |
224 | fi` | |
225 | ||
51489233 | 226 | AR_FOR_TARGET = ` \ |
5cc73086 KR |
227 | if [ -f $$r/binutils/ar ] ; then \ |
228 | echo $$r/binutils/ar ; \ | |
51489233 | 229 | else \ |
378fd382 | 230 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ |
51489233 ILT |
231 | echo $(AR); \ |
232 | else \ | |
ea6d5817 | 233 | t='$(program_transform_name)'; echo ar | sed -e 's/x/x/' $$t ; \ |
81246025 | 234 | fi; \ |
51489233 ILT |
235 | fi` |
236 | ||
237 | RANLIB_FOR_TARGET = ` \ | |
5cc73086 KR |
238 | if [ -f $$r/binutils/ranlib ] ; then \ |
239 | echo $$r/binutils/ranlib ; \ | |
51489233 | 240 | else \ |
378fd382 | 241 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ |
51489233 ILT |
242 | echo $(RANLIB); \ |
243 | else \ | |
ea6d5817 | 244 | t='$(program_transform_name)'; echo ranlib | sed -e 's/x/x/' $$t ; \ |
81246025 | 245 | fi; \ |
51489233 ILT |
246 | fi` |
247 | ||
248 | NM_FOR_TARGET = ` \ | |
ea6d5817 | 249 | if [ -f $$r/binutils/nm.new ] ; then \ |
753d5049 | 250 | echo $$r/binutils/nm.new ; \ |
51489233 | 251 | else \ |
378fd382 | 252 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ |
51489233 ILT |
253 | echo $(NM); \ |
254 | else \ | |
ea6d5817 | 255 | t='$(program_transform_name)'; echo nm | sed -e 's/x/x/' $$t ; \ |
81246025 | 256 | fi; \ |
51489233 ILT |
257 | fi` |
258 | ||
eb02fd64 | 259 | #### host and target specific makefile fragments come in here. |
ec342d7d | 260 | ### |
eb02fd64 | 261 | |
0ef4728f ILT |
262 | # Flags to pass down to all sub-makes. |
263 | # Please keep these in alphabetical order. | |
264 | BASE_FLAGS_TO_PASS = \ | |
2198e4ba | 265 | "AR_FLAGS=$(AR_FLAGS)" \ |
d09de70e | 266 | "AR_FOR_TARGET=$(AR_FOR_TARGET)" \ |
0ef4728f | 267 | "AS_FOR_TARGET=$(AS_FOR_TARGET)" \ |
378fd382 | 268 | "BISON=$(BISON)" \ |
378fd382 | 269 | "CC_FOR_BUILD=$(CC_FOR_BUILD)" \ |
0ef4728f | 270 | "CC_FOR_TARGET=$(CC_FOR_TARGET)" \ |
2198e4ba | 271 | "CFLAGS=$(CFLAGS)" \ |
3585593d | 272 | "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \ |
a4e879a1 | 273 | $(start-sanitize-chill)\ |
7d9f0c54 MW |
274 | "CHILLFLAGS=$(CHILLFLAGS)" \ |
275 | "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \ | |
276 | "CHILL_LIB=$(CHILL_LIB)" \ | |
a4e879a1 | 277 | $(end-sanitize-chill)\ |
0ef4728f ILT |
278 | "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \ |
279 | "CXXFLAGS=$(CXXFLAGS)" \ | |
3585593d | 280 | "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \ |
0ef4728f | 281 | "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \ |
a220ba0f | 282 | "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \ |
a9a2f22f | 283 | "GCC_FOR_TARGET=$(CC_FOR_TARGET)" \ |
2198e4ba MT |
284 | "INSTALL=$(INSTALL)" \ |
285 | "INSTALL_DATA=$(INSTALL_DATA)" \ | |
440868a0 | 286 | "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ |
f35c6160 | 287 | "INSTALL_XFORM=$(INSTALL_XFORM)" \ |
378fd382 DZ |
288 | "LDFLAGS=$(LDFLAGS)" \ |
289 | "LEX=$(LEX)" \ | |
054f9ada | 290 | "LD_FOR_TARGET=$(LD_FOR_TARGET)" \ |
3585593d BK |
291 | "LIBCFLAGS=$(LIBCFLAGS)" \ |
292 | "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \ | |
04103845 DE |
293 | "LIBCXXFLAGS=$(LIBCXXFLAGS)" \ |
294 | "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \ | |
65e21701 | 295 | "M4=$(M4)" \ |
9823504d | 296 | "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \ |
0ef4728f | 297 | "NM_FOR_TARGET=$(NM_FOR_TARGET)" \ |
04103845 DE |
298 | "PICFLAG=$(PICFLAG)" \ |
299 | "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \ | |
d09de70e | 300 | "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \ |
49dfa984 | 301 | "SHELL=$(SHELL)" \ |
a54e05f6 | 302 | "EXPECT=$(EXPECT)" \ |
6a42d184 | 303 | "RUNTEST=$(RUNTEST)" \ |
86365152 | 304 | "RUNTESTFLAGS=$(RUNTESTFLAGS)" \ |
5cc73086 | 305 | "YACC=$(BISON)" \ |
378fd382 DZ |
306 | "exec_prefix=$(exec_prefix)" \ |
307 | "prefix=$(prefix)" \ | |
308 | "tooldir=$(tooldir)" | |
2198e4ba | 309 | |
0ef4728f ILT |
310 | # Flags to pass down to most sub-makes, in which we're building with |
311 | # the host environment. | |
6d681784 | 312 | # If any variables are added here, they must be added to do-*, below. |
0ef4728f | 313 | EXTRA_HOST_FLAGS = \ |
6d681784 JG |
314 | 'AR=$(AR)' \ |
315 | 'AS=$(AS)' \ | |
316 | 'CC=$(CC)' \ | |
317 | 'CXX=$(CXX)' \ | |
318 | 'NM=$(NM)' \ | |
753d5049 | 319 | 'RANLIB=$(RANLIB)' |
0ef4728f ILT |
320 | |
321 | FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) | |
322 | ||
d1bea4c7 DZ |
323 | # Flags that are concerned with the location of the X11 include files |
324 | # and library files | |
054f9ada JM |
325 | # |
326 | # NOTE: until the top-level is getting the values via autoconf, it only | |
327 | # causes problems to have this top-level Makefile overriding the autoconf-set | |
328 | # values in child directories. Only variables that don't conflict with | |
329 | # autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now. | |
330 | # | |
d1bea4c7 | 331 | X11_FLAGS_TO_PASS = \ |
054f9ada JM |
332 | 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \ |
333 | 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)' | |
d1bea4c7 | 334 | |
0ef4728f ILT |
335 | # Flags to pass down to makes which are built with the target environment. |
336 | # The double $ decreases the length of the command line; the variables | |
337 | # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them. | |
6d681784 | 338 | # If any variables are added here, they must be added to do-*, below. |
0ef4728f ILT |
339 | EXTRA_TARGET_FLAGS = \ |
340 | 'AR=$$(AR_FOR_TARGET)' \ | |
341 | 'AS=$$(AS_FOR_TARGET)' \ | |
342 | 'CC=$$(CC_FOR_TARGET)' \ | |
3585593d | 343 | 'CFLAGS=$$(CFLAGS_FOR_TARGET)' \ |
0ef4728f | 344 | 'CXX=$$(CXX_FOR_TARGET)' \ |
3585593d | 345 | 'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \ |
a220ba0f | 346 | 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \ |
054f9ada | 347 | 'LD=$$(LD_FOR_TARGET)' \ |
3585593d BK |
348 | 'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \ |
349 | 'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \ | |
0ef4728f | 350 | 'NM=$$(NM_FOR_TARGET)' \ |
04103845 | 351 | 'PICFLAG=$$(PICFLAG_FOR_TARGET)' \ |
753d5049 | 352 | 'RANLIB=$$(RANLIB_FOR_TARGET)' |
0ef4728f ILT |
353 | |
354 | TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS) | |
51489233 | 355 | |
f4e414f1 ILT |
356 | # Flags to pass down to gcc. gcc builds a library, libgcc.a, so it |
357 | # unfortunately needs the native compiler and the target ar and | |
0ef4728f | 358 | # ranlib. |
66957ce4 ILT |
359 | # If any variables are added here, they must be added to do-*, below. |
360 | # The HOST_* variables are a special case, which are used for the gcc | |
361 | # cross-building scheme. | |
0ef4728f ILT |
362 | EXTRA_GCC_FLAGS = \ |
363 | 'AR=$$(AR_FOR_TARGET)' \ | |
6d681784 JG |
364 | 'AS=$(AS)' \ |
365 | 'CC=$(CC)' \ | |
366 | 'CXX=$(CXX)' \ | |
a54e05f6 KR |
367 | 'HOST_CC=$(CC_FOR_BUILD)' \ |
368 | 'HOST_PREFIX=$(HOST_PREFIX)' \ | |
369 | 'HOST_PREFIX_1=$(HOST_PREFIX_1)' \ | |
6d681784 | 370 | 'NM=$(NM)' \ |
753d5049 | 371 | 'RANLIB=$$(RANLIB_FOR_TARGET)' |
0ef4728f | 372 | |
34b3298b | 373 | GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) |
f4e414f1 | 374 | |
6a42d184 | 375 | # This is a list of the targets for all of the modules which are compiled |
79337c85 ILT |
376 | # using $(FLAGS_TO_PASS). |
377 | ALL_MODULES = \ | |
378 | all-autoconf \ | |
379 | all-bfd \ | |
380 | all-binutils \ | |
381 | all-byacc \ | |
382 | all-cvs \ | |
383 | all-dejagnu \ | |
384 | all-diff \ | |
ac259c28 | 385 | all-dosutils \ |
79337c85 ILT |
386 | all-etc \ |
387 | all-fileutils \ | |
388 | all-find \ | |
389 | all-flex \ | |
390 | all-gas \ | |
391 | all-gawk \ | |
79337c85 ILT |
392 | all-gprof \ |
393 | all-grep \ | |
394 | all-gzip \ | |
395 | all-hello \ | |
396 | all-indent \ | |
397 | all-ispell \ | |
398 | all-ld \ | |
399 | all-libiberty \ | |
400 | all-m4 \ | |
401 | all-make \ | |
402 | all-mmalloc \ | |
403 | all-opcodes \ | |
404 | all-patch \ | |
405 | all-prms \ | |
406 | all-rcs \ | |
407 | all-readline \ | |
275049c0 | 408 | all-release \ |
79337c85 ILT |
409 | all-recode \ |
410 | all-sed \ | |
411 | all-send-pr \ | |
412 | all-shellutils \ | |
413 | all-sim \ | |
414 | all-tar \ | |
415 | all-tcl \ | |
416 | all-texinfo \ | |
417 | all-textutils \ | |
418 | all-tgas \ | |
419 | all-time \ | |
420 | all-uudecode \ | |
753d5049 SC |
421 | all-wdiff |
422 | ||
6a42d184 DZ |
423 | # This is a list of the check targets for all of the modules which are |
424 | # compiled using $(FLAGS_TO_PASS). | |
4f0b8f27 TL |
425 | # This is a list of the check targets for all of the modules which are |
426 | # compiled using $(FLAGS_TO_PASS). | |
427 | # | |
d237841c BC |
428 | # The list is in two parts. The first lists those tools which |
429 | # are tested as part of the host's native tool-chain, and not | |
430 | # tested in a cross configuration. | |
431 | NATIVE_CHECK_MODULES = \ | |
432 | check-byacc \ | |
4f0b8f27 TL |
433 | check-flex |
434 | ||
d237841c | 435 | CROSS_CHECK_MODULES = \ |
6a42d184 DZ |
436 | check-autoconf \ |
437 | check-bfd \ | |
438 | check-binutils \ | |
6a42d184 DZ |
439 | check-cvs \ |
440 | check-dejagnu \ | |
441 | check-diff \ | |
442 | check-etc \ | |
443 | check-fileutils \ | |
444 | check-find \ | |
6a42d184 DZ |
445 | check-gas \ |
446 | check-gawk \ | |
6a42d184 DZ |
447 | check-gprof \ |
448 | check-grep \ | |
449 | check-gzip \ | |
450 | check-hello \ | |
451 | check-indent \ | |
452 | check-ispell \ | |
453 | check-ld \ | |
454 | check-libiberty \ | |
455 | check-m4 \ | |
456 | check-make \ | |
457 | check-mmcheckoc \ | |
458 | check-opcodes \ | |
459 | check-patch \ | |
460 | check-prms \ | |
461 | check-rcs \ | |
462 | check-readline \ | |
463 | check-recode \ | |
464 | check-sed \ | |
465 | check-send-pr \ | |
466 | check-shellutils \ | |
467 | check-sim \ | |
468 | check-tar \ | |
469 | check-tcl \ | |
470 | check-texinfo \ | |
471 | check-textutils \ | |
472 | check-tgas \ | |
473 | check-time \ | |
474 | check-uudecode \ | |
475 | check-wdiff | |
d237841c BC |
476 | |
477 | CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES) | |
6a42d184 DZ |
478 | |
479 | # This is a list of the install targets for all of the modules which are | |
79337c85 ILT |
480 | # compiled using $(FLAGS_TO_PASS). |
481 | INSTALL_MODULES = \ | |
482 | install-autoconf \ | |
483 | install-bfd \ | |
484 | install-binutils \ | |
485 | install-byacc \ | |
486 | install-cvs \ | |
487 | install-dejagnu \ | |
488 | install-diff \ | |
753d5049 | 489 | install-dosutils \ |
79337c85 ILT |
490 | install-etc \ |
491 | install-fileutils \ | |
492 | install-find \ | |
493 | install-flex \ | |
494 | install-gas \ | |
495 | install-gawk \ | |
79337c85 ILT |
496 | install-gprof \ |
497 | install-grep \ | |
498 | install-gzip \ | |
499 | install-hello \ | |
500 | install-indent \ | |
501 | install-ispell \ | |
502 | install-ld \ | |
503 | install-libiberty \ | |
504 | install-m4 \ | |
505 | install-make \ | |
506 | install-mmalloc \ | |
507 | install-opcodes \ | |
508 | install-patch \ | |
509 | install-prms \ | |
510 | install-rcs \ | |
511 | install-readline \ | |
512 | install-recode \ | |
513 | install-sed \ | |
514 | install-send-pr \ | |
515 | install-shellutils \ | |
516 | install-sim \ | |
517 | install-tar \ | |
518 | install-tcl \ | |
519 | install-texinfo \ | |
520 | install-textutils \ | |
521 | install-tgas \ | |
522 | install-time \ | |
523 | install-uudecode \ | |
524 | install-wdiff | |
525 | ||
6a42d184 | 526 | # This is a list of the targets for all of the modules which are compiled |
79337c85 ILT |
527 | # using $(X11_FLAGS_TO_PASS). |
528 | ALL_X11_MODULES = \ | |
529 | all-emacs \ | |
4d802af9 | 530 | all-emacs19 \ |
04103845 | 531 | all-gdb \ |
79337c85 | 532 | all-expect \ |
65e21701 | 533 | all-gash \ |
79337c85 ILT |
534 | all-tclX \ |
535 | all-tk | |
536 | ||
6a42d184 DZ |
537 | # This is a list of the check targets for all of the modules which are |
538 | # compiled using $(X11_FLAGS_TO_PASS). | |
539 | CHECK_X11_MODULES = \ | |
540 | check-emacs \ | |
04103845 | 541 | check-gdb \ |
6a42d184 | 542 | check-expect \ |
65e21701 | 543 | check-gash \ |
6a42d184 DZ |
544 | check-tclX \ |
545 | check-tk | |
546 | ||
79337c85 ILT |
547 | # This is a list of the install targets for all the modules which are |
548 | # compiled using $(X11_FLAGS_TO_PASS). | |
549 | INSTALL_X11_MODULES = \ | |
550 | install-emacs \ | |
4d802af9 | 551 | install-emacs19 \ |
04103845 | 552 | install-gdb \ |
79337c85 | 553 | install-expect \ |
65e21701 | 554 | install-gash \ |
79337c85 ILT |
555 | install-tclX \ |
556 | install-tk | |
fca4f908 | 557 | |
6a42d184 | 558 | # This is a list of the targets for all of the modules which are compiled |
79337c85 | 559 | # using $(TARGET_FLAGS_TO_PASS). |
ab1cbc67 | 560 | # RENAME these all-xinberty should be all-target-libiberty |
79337c85 | 561 | ALL_TARGET_MODULES = \ |
ab1cbc67 PB |
562 | all-target-libio \ |
563 | all-target-libstdc++ \ | |
564 | all-target-librx \ | |
565 | all-target-libg++ \ | |
566 | all-target-newlib \ | |
567 | all-target-winsup \ | |
568 | all-target-libgloss \ | |
569 | all-target-libiberty | |
79337c85 | 570 | |
ca2ce3b3 ILT |
571 | # This is a list of the configure targets for all of the modules which |
572 | # are compiled using the target tools. | |
573 | CONFIGURE_TARGET_MODULES = \ | |
ab1cbc67 PB |
574 | configure-target-libio \ |
575 | configure-target-libstdc++ \ | |
576 | configure-target-librx \ | |
577 | configure-target-libg++ \ | |
578 | configure-target-newlib \ | |
579 | configure-target-winsup \ | |
580 | configure-target-libgloss \ | |
581 | configure-target-libiberty | |
ca2ce3b3 | 582 | |
6a42d184 DZ |
583 | # This is a list of the check targets for all of the modules which are |
584 | # compiled using $(TARGET_FLAGS_TO_PASS). | |
585 | CHECK_TARGET_MODULES = \ | |
ab1cbc67 PB |
586 | check-target-libio \ |
587 | check-target-libstdc++ \ | |
588 | check-target-libg++ \ | |
589 | check-target-newlib \ | |
590 | check-target-winsup \ | |
591 | check-target-libiberty | |
6a42d184 DZ |
592 | |
593 | # This is a list of the install targets for all of the modules which are | |
79337c85 | 594 | # compiled using $(TARGET_FLAGS_TO_PASS). |
ab1cbc67 PB |
595 | CROSS=native # or CROSS=cross |
596 | # Target libraries are put under this directory: | |
597 | TARGET_SUBDIR = . # Changed by configure to $(target_alias) if cross. | |
598 | ||
79337c85 | 599 | INSTALL_TARGET_MODULES = \ |
ab1cbc67 PB |
600 | install-target-libio \ |
601 | install-target-libstdc++ \ | |
602 | install-target-libg++ \ | |
603 | install-target-newlib \ | |
604 | install-target-winsup \ | |
605 | install-target-libgloss \ | |
606 | install-target-libiberty | |
7481617f | 607 | |
79337c85 | 608 | # The first rule in the file had better be this one. Don't put any above it. |
a59b94d2 | 609 | all: all.normal |
79337c85 ILT |
610 | .PHONY: all |
611 | ||
612 | # The target built for a native build. | |
613 | .PHONY: all.normal | |
614 | all.normal: \ | |
615 | $(ALL_MODULES) \ | |
616 | $(ALL_TARGET_MODULES) \ | |
46d0ca81 | 617 | $(ALL_X11_MODULES) \ |
79337c85 ILT |
618 | all-gcc |
619 | ||
0ef4728f | 620 | # Do a target for all the subdirectories. A ``make do-X'' will do a |
53222cbd RP |
621 | # ``make X'' in all subdirectories (because, in general, there is a |
622 | # dependency (below) of X upon do-X, a ``make X'' will also do this, | |
623 | # but it may do additional work as well). | |
0ef4728f ILT |
624 | # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once, |
625 | # because it is so large that it can easily overflow the command line | |
626 | # length limit on some systems. | |
79337c85 | 627 | DO_X = \ |
79337c85 ILT |
628 | do-clean \ |
629 | do-distclean \ | |
630 | do-dvi \ | |
631 | do-info \ | |
632 | do-install-info \ | |
633 | do-installcheck \ | |
634 | do-mostlyclean \ | |
ca2ce3b3 | 635 | do-maintainer-clean \ |
753d5049 | 636 | do-TAGS |
79337c85 ILT |
637 | .PHONY: $(DO_X) |
638 | $(DO_X): | |
0ef4728f | 639 | @target=`echo $@ | sed -e 's/^do-//'`; \ |
5cc73086 | 640 | r=`pwd`; export r; \ |
0ef4728f | 641 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
ab1cbc67 | 642 | for i in $(SUBDIRS) -dummy-; do \ |
36286a3e | 643 | if [ -f ./$$i/Makefile ]; then \ |
0ef4728f | 644 | case $$i in \ |
0ef4728f | 645 | gcc) \ |
6d681784 JG |
646 | for flag in $(EXTRA_GCC_FLAGS); do \ |
647 | eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \ | |
648 | done; \ | |
0ef4728f ILT |
649 | ;; \ |
650 | *) \ | |
6d681784 JG |
651 | for flag in $(EXTRA_HOST_FLAGS); do \ |
652 | eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \ | |
653 | done; \ | |
0ef4728f ILT |
654 | ;; \ |
655 | esac ; \ | |
753d5049 | 656 | export AR AS CC CXX NM RANLIB; \ |
0ef4728f | 657 | if (cd ./$$i; \ |
6d681784 JG |
658 | $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \ |
659 | "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \ | |
753d5049 | 660 | "RANLIB=$${RANLIB}" \ |
6d681784 | 661 | $${target}); \ |
0ef4728f ILT |
662 | then true; else exit 1; fi; \ |
663 | else true; fi; \ | |
ab1cbc67 PB |
664 | done;\ |
665 | for i in $(TARGET_CONFIGDIRS) -dummy-; do \ | |
666 | if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \ | |
667 | for flag in $(EXTRA_TARGET_FLAGS); do \ | |
668 | eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \ | |
669 | done; \ | |
670 | export AR AS CC CXX NM RANLIB; \ | |
671 | if (cd $(TARGET_SUBDIR)/$$i; \ | |
672 | $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \ | |
673 | "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \ | |
674 | "RANLIB=$${RANLIB}" \ | |
675 | $${target}); \ | |
676 | then true; else exit 1; fi; \ | |
677 | else true; fi; \ | |
0ef4728f | 678 | done |
fb90daeb | 679 | |
79337c85 ILT |
680 | # Here are the targets which correspond to the do-X targets. |
681 | ||
65088029 | 682 | .PHONY: info installcheck dvi install-info |
ca2ce3b3 ILT |
683 | .PHONY: clean distclean mostlyclean maintainer-clean realclean |
684 | .PHONY: local-clean local-distclean local-maintainer-clean | |
0ef4728f | 685 | info: do-info |
1a14993c | 686 | installcheck: do-installcheck |
0ef4728f | 687 | dvi: do-dvi |
9a9e8e7f | 688 | |
f35c6160 DZ |
689 | install-info: do-install-info dir.info |
690 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
72c09fbc SC |
691 | if [ -f dir.info ] ; then \ |
692 | $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \ | |
50fbe976 | 693 | else true ; fi |
4d714963 | 694 | |
0ef4728f | 695 | local-clean: |
7fed4078 | 696 | -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E |
3b30df82 | 697 | |
0ef4728f | 698 | local-distclean: |
7fed4078 | 699 | -rm -f Makefile config.status |
7fcfdcf7 | 700 | |
ca2ce3b3 ILT |
701 | local-maintainer-clean: |
702 | @echo "This command is intended for maintainers to use;" | |
703 | @echo "it deletes files that may require special tools to rebuild." | |
704 | ||
0ef4728f ILT |
705 | clean: do-clean local-clean |
706 | mostlyclean: do-mostlyclean local-clean | |
707 | distclean: do-distclean local-clean local-distclean | |
ca2ce3b3 ILT |
708 | maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean |
709 | maintainer-clean: local-distclean | |
710 | realclean: maintainer-clean | |
0ef4728f | 711 | |
65088029 ILT |
712 | # Check target. |
713 | ||
714 | .PHONY: check | |
715 | check: $(CHECK_MODULES) \ | |
716 | $(CHECK_TARGET_MODULES) \ | |
717 | $(CHECK_X11_MODULES) \ | |
718 | check-gcc | |
719 | ||
79337c85 | 720 | # Installation targets. |
4d714963 | 721 | |
04103845 | 722 | .PHONY: install uninstall source-vault binary-vault vault-install |
98a33b6d | 723 | install: $(INSTALL_TARGET) |
b26ff9d8 | 724 | |
79337c85 ILT |
725 | uninstall: |
726 | @echo "the uninstall target is not supported in this tree" | |
727 | ||
04103845 DE |
728 | source-vault: |
729 | $(MAKE) -f ./release/Build-A-Release \ | |
730 | host=$(host_alias) source-vault | |
731 | ||
732 | binary-vault: | |
733 | $(MAKE) -f ./release/Build-A-Release \ | |
734 | host=$(host_alias) target=$(target_alias) | |
735 | ||
275049c0 JK |
736 | vault-install: |
737 | @if [ -f ./release/vault-install ] ; then \ | |
738 | ./release/vault-install $(host_alias) $(target_alias) ; \ | |
96bfa612 KR |
739 | else \ |
740 | true ; \ | |
275049c0 JK |
741 | fi |
742 | ||
79337c85 | 743 | .PHONY: install.all |
06a07944 RP |
744 | install.all: install-no-fixedincludes |
745 | @if [ -f ./gcc/Makefile ] ; then \ | |
5cc73086 | 746 | r=`pwd` ; export r ; \ |
06a07944 RP |
747 | (cd ./gcc; \ |
748 | $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \ | |
749 | else \ | |
750 | true ; \ | |
751 | fi | |
5a63b336 | 752 | |
96bfa612 | 753 | # install-no-fixedincludes is used because Cygnus can not distribute |
79337c85 ILT |
754 | # the fixed header files. |
755 | .PHONY: install-no-fixedincludes | |
756 | install-no-fixedincludes: \ | |
757 | install-dirs \ | |
79337c85 ILT |
758 | $(INSTALL_MODULES) \ |
759 | $(INSTALL_TARGET_MODULES) \ | |
96bfa612 | 760 | $(INSTALL_X11_MODULES) \ |
f35c6160 | 761 | gcc-no-fixedincludes |
d1bea4c7 | 762 | |
5cc24596 | 763 | # Install the gcc headers files, but not the fixed include files, |
79337c85 ILT |
764 | # which Cygnus is not allowed to distribute. This rule is very |
765 | # dependent on the workings of the gcc Makefile.in. | |
766 | .PHONY: gcc-no-fixedincludes | |
06a07944 | 767 | gcc-no-fixedincludes: |
5cc24596 PB |
768 | @if [ -f ./gcc/Makefile ]; then \ |
769 | rm -rf gcc/tmp-include; \ | |
770 | mv gcc/include gcc/tmp-include 2>/dev/null; \ | |
771 | mkdir gcc/include; \ | |
7f9cb3b2 | 772 | cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \ |
753d5049 | 773 | touch gcc/stmp-fixinc gcc/include/fixed; \ |
a54e05f6 | 774 | rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \ |
5cc73086 | 775 | r=`pwd`; export r; \ |
5cc24596 PB |
776 | srcroot=`cd $(srcdir); pwd` ; export srcroot; \ |
777 | (cd ./gcc; \ | |
778 | $(MAKE) $(GCC_FLAGS_TO_PASS) install); \ | |
779 | rm -rf gcc/include; \ | |
780 | mv gcc/tmp-include gcc/include 2>/dev/null; \ | |
781 | else true; fi | |
dcbfc14d | 782 | |
79337c85 ILT |
783 | # This rule is used to build the modules which use FLAGS_TO_PASS. To |
784 | # build a target all-X means to cd to X and make all. | |
3de70f1d | 785 | # |
055cca84 | 786 | # all-gui, and all-libproc are handled specially because |
4d802af9 MT |
787 | # they are still experimental, and if they fail to build, that |
788 | # shouldn't stop "make all". | |
04103845 DE |
789 | .PHONY: $(ALL_MODULES) all-gui all-libproc |
790 | $(ALL_MODULES) all-gui all-libproc: | |
79337c85 | 791 | @dir=`echo $@ | sed -e 's/all-//'`; \ |
472af17f ILT |
792 | if [ -f ./$${dir}/Makefile ] ; then \ |
793 | r=`pwd`; export r; \ | |
794 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
795 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \ | |
07362bd9 | 796 | else \ |
79337c85 | 797 | true; \ |
07362bd9 DZ |
798 | fi |
799 | ||
80cbf870 ILT |
800 | # These rules are used to check the modules which use FLAGS_TO_PASS. |
801 | # To build a target check-X means to cd to X and make check. Some | |
802 | # modules are only tested in a native toolchain. | |
4f0b8f27 | 803 | |
d237841c BC |
804 | .PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES) |
805 | $(NATIVE_CHECK_MODULES): | |
39cc6dae RS |
806 | @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ |
807 | dir=`echo $@ | sed -e 's/check-//'`; \ | |
472af17f ILT |
808 | if [ -f ./$${dir}/Makefile ] ; then \ |
809 | r=`pwd`; export r; \ | |
810 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
811 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \ | |
812 | else \ | |
813 | true; \ | |
4f0b8f27 TL |
814 | fi; \ |
815 | fi | |
816 | ||
817 | $(CROSS_CHECK_MODULES): | |
6a42d184 DZ |
818 | @dir=`echo $@ | sed -e 's/check-//'`; \ |
819 | if [ -f ./$${dir}/Makefile ] ; then \ | |
5cc73086 | 820 | r=`pwd`; export r; \ |
6a42d184 DZ |
821 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
822 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \ | |
823 | else \ | |
824 | true; \ | |
825 | fi | |
826 | ||
79337c85 ILT |
827 | # This rule is used to install the modules which use FLAGS_TO_PASS. |
828 | # To build a target install-X means to cd to X and make install. | |
829 | .PHONY: $(INSTALL_MODULES) | |
830 | $(INSTALL_MODULES): install-dirs | |
831 | @dir=`echo $@ | sed -e 's/install-//'`; \ | |
832 | if [ -f ./$${dir}/Makefile ] ; then \ | |
5cc73086 | 833 | r=`pwd`; export r; \ |
79337c85 | 834 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
f35c6160 | 835 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \ |
07362bd9 | 836 | else \ |
79337c85 | 837 | true; \ |
07362bd9 DZ |
838 | fi |
839 | ||
ca2ce3b3 ILT |
840 | # This rule is used to configure the modules which are built with the |
841 | # target tools. | |
842 | .PHONY: $(CONFIGURE_TARGET_MODULES) | |
843 | $(CONFIGURE_TARGET_MODULES): | |
ab1cbc67 PB |
844 | @dir=`echo $@ | sed -e 's/configure-target-//'`; \ |
845 | if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \ | |
ca2ce3b3 ILT |
846 | true; \ |
847 | elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \ | |
efd7b806 | 848 | if [ -d $(srcdir)/$${dir} ]; then \ |
ab1cbc67 | 849 | [ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\ |
efd7b806 SC |
850 | r=`pwd`; export r; \ |
851 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
852 | AR="$(AR_FOR_TARGET)"; export AR; \ | |
853 | AS="$(AS_FOR_TARGET)"; export AS; \ | |
854 | CC="$(CC_FOR_TARGET)"; export CC; \ | |
855 | CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \ | |
856 | CXX="$(CXX_FOR_TARGET)"; export CXX; \ | |
857 | CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \ | |
054f9ada | 858 | LD="$(LD_FOR_TARGET)"; export LD; \ |
efd7b806 SC |
859 | NM="$(NM_FOR_TARGET)"; export NM; \ |
860 | RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \ | |
ab1cbc67 | 861 | cd $(TARGET_SUBDIR)/$${dir}; \ |
efd7b806 SC |
862 | $${srcroot}/configure $(CONFIG_ARGUMENTS) --srcdir=$${srcroot}/$${dir}; \ |
863 | else \ | |
864 | true; \ | |
865 | fi \ | |
ca2ce3b3 ILT |
866 | else \ |
867 | true; \ | |
868 | fi | |
869 | ||
6a42d184 DZ |
870 | # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS. |
871 | # To build a target all-X means to cd to X and make all. | |
79337c85 ILT |
872 | .PHONY: $(ALL_TARGET_MODULES) |
873 | $(ALL_TARGET_MODULES): | |
ab1cbc67 PB |
874 | @dir=`echo $@ | sed -e 's/all-target-//'`; \ |
875 | if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \ | |
5cc73086 | 876 | r=`pwd`; export r; \ |
79337c85 | 877 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
ab1cbc67 | 878 | (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \ |
07362bd9 | 879 | else \ |
79337c85 | 880 | true; \ |
07362bd9 DZ |
881 | fi |
882 | ||
6a42d184 DZ |
883 | # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS. |
884 | # To build a target install-X means to cd to X and make install. | |
885 | .PHONY: $(CHECK_TARGET_MODULES) | |
886 | $(CHECK_TARGET_MODULES): | |
136ca05d | 887 | @dir=`echo $@ | sed -e 's/check-target-//'`; \ |
ab1cbc67 | 888 | if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \ |
5cc73086 | 889 | r=`pwd`; export r; \ |
6a42d184 | 890 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
ab1cbc67 | 891 | (cd $(TARGET_SUBDIR)/$${dir};$(MAKE) $(TARGET_FLAGS_TO_PASS) check);\ |
6a42d184 DZ |
892 | else \ |
893 | true; \ | |
894 | fi | |
895 | ||
79337c85 ILT |
896 | # This rule is used to install the modules which use |
897 | # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X | |
898 | # and make install. | |
899 | .PHONY: $(INSTALL_TARGET_MODULES) | |
900 | $(INSTALL_TARGET_MODULES): install-dirs | |
ab1cbc67 PB |
901 | @dir=`echo $@ | sed -e 's/install-target-//'`; \ |
902 | if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \ | |
5cc73086 | 903 | r=`pwd`; export r; \ |
79337c85 | 904 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
ab1cbc67 PB |
905 | (cd $(TARGET_SUBDIR)/$${dir}; \ |
906 | $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \ | |
07362bd9 | 907 | else \ |
79337c85 | 908 | true; \ |
07362bd9 DZ |
909 | fi |
910 | ||
6a42d184 | 911 | # This rule is used to build the modules which use X11_FLAGS_TO_PASS. |
79337c85 ILT |
912 | # To build a target all-X means to cd to X and make all. |
913 | .PHONY: $(ALL_X11_MODULES) | |
914 | $(ALL_X11_MODULES): | |
915 | @dir=`echo $@ | sed -e 's/all-//'`; \ | |
916 | if [ -f ./$${dir}/Makefile ] ; then \ | |
5cc73086 | 917 | r=`pwd`; export r; \ |
79337c85 ILT |
918 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
919 | (cd $${dir}; \ | |
920 | $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \ | |
07362bd9 | 921 | else \ |
79337c85 | 922 | true; \ |
07362bd9 DZ |
923 | fi |
924 | ||
6a42d184 DZ |
925 | # This rule is used to check the modules which use X11_FLAGS_TO_PASS. |
926 | # To build a target check-X means to cd to X and make all. | |
927 | .PHONY: $(CHECK_X11_MODULES) | |
928 | $(CHECK_X11_MODULES): | |
929 | @dir=`echo $@ | sed -e 's/check-//'`; \ | |
930 | if [ -f ./$${dir}/Makefile ] ; then \ | |
5cc73086 | 931 | r=`pwd`; export r; \ |
6a42d184 DZ |
932 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
933 | (cd $${dir}; \ | |
934 | $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \ | |
935 | else \ | |
936 | true; \ | |
937 | fi | |
938 | ||
939 | # This rule is used to install the modules which use X11_FLAGS_TO_PASS. | |
79337c85 ILT |
940 | # To build a target install-X means to cd to X and make install. |
941 | .PHONY: $(INSTALL_X11_MODULES) | |
942 | $(INSTALL_X11_MODULES): | |
6a42d184 | 943 | @dir=`echo $@ | sed -e 's/install-//'`; \ |
79337c85 | 944 | if [ -f ./$${dir}/Makefile ] ; then \ |
5cc73086 | 945 | r=`pwd`; export r; \ |
79337c85 ILT |
946 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
947 | (cd $${dir}; \ | |
948 | $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \ | |
07362bd9 | 949 | else \ |
79337c85 | 950 | true; \ |
07362bd9 DZ |
951 | fi |
952 | ||
79337c85 ILT |
953 | # gcc is the only module which uses GCC_FLAGS_TO_PASS. |
954 | .PHONY: all-gcc | |
955 | all-gcc: | |
956 | @if [ -f ./gcc/Makefile ] ; then \ | |
5cc73086 | 957 | r=`pwd`; export r; \ |
79337c85 ILT |
958 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
959 | (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \ | |
07362bd9 | 960 | else \ |
79337c85 | 961 | true; \ |
07362bd9 DZ |
962 | fi |
963 | ||
65088029 ILT |
964 | .PHONY: check-gcc |
965 | check-gcc: | |
966 | @if [ -f ./gcc/Makefile ] ; then \ | |
5cc73086 | 967 | r=`pwd`; export r; \ |
65088029 ILT |
968 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
969 | (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \ | |
970 | else \ | |
971 | true; \ | |
972 | fi | |
973 | ||
79337c85 ILT |
974 | .PHONY: install-gcc |
975 | install-gcc: | |
976 | @if [ -f ./gcc/Makefile ] ; then \ | |
5cc73086 | 977 | r=`pwd`; export r; \ |
79337c85 ILT |
978 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ |
979 | (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \ | |
07362bd9 | 980 | else \ |
79337c85 | 981 | true; \ |
07362bd9 DZ |
982 | fi |
983 | ||
753d5049 SC |
984 | |
985 | # EXPERIMENTAL STUFF | |
986 | # This rule is used to install the modules which use FLAGS_TO_PASS. | |
987 | # To build a target install-X means to cd to X and make install. | |
09985c96 SC |
988 | .PHONY: install-dosrel |
989 | install-dosrel: install-dirs info | |
753d5049 SC |
990 | @dir=`echo $@ | sed -e 's/install-//'`; \ |
991 | if [ -f ./$${dir}/Makefile ] ; then \ | |
992 | r=`pwd`; export r; \ | |
993 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
994 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \ | |
995 | else \ | |
996 | true; \ | |
997 | fi | |
998 | ||
09985c96 | 999 | install-dosrel-fake: |
a987271c | 1000 | |
753d5049 | 1001 | |
79337c85 | 1002 | # This is a list of inter-dependencies among modules. |
65e21701 | 1003 | all-autoconf: all-m4 |
79337c85 | 1004 | all-bfd: |
dfe44004 | 1005 | all-binutils: all-libiberty all-opcodes all-bfd all-flex all-byacc |
79337c85 | 1006 | all-byacc: |
79337c85 | 1007 | all-cvs: |
4d802af9 | 1008 | all-dejagnu: all-tcl all-expect all-tk |
79337c85 ILT |
1009 | all-diff: all-libiberty |
1010 | all-emacs: | |
1d5fcc66 | 1011 | all-emacs19: all-byacc |
79337c85 | 1012 | all-etc: |
c6ba9ae0 | 1013 | all-expect: all-tcl all-tk |
275049c0 | 1014 | all-fileutils: all-libiberty |
79337c85 | 1015 | all-find: |
7dcc0664 | 1016 | all-flex: all-libiberty all-byacc |
79337c85 | 1017 | all-gas: all-libiberty all-opcodes all-bfd |
65e21701 | 1018 | all-gash: all-tcl |
79337c85 | 1019 | all-gawk: |
fc3524a9 DE |
1020 | ALL_GCC = all-gcc |
1021 | all-gcc: all-libiberty all-byacc all-binutils all-gas all-ld | |
04103845 | 1022 | all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-byacc all-sim $(gdbnlmrequirements) |
79337c85 | 1023 | all-gprof: all-libiberty all-bfd |
6214eb23 | 1024 | all-grep: all-libiberty |
ab1cbc67 | 1025 | all-gui: all-gdb all-libproc all-target-librx |
79337c85 ILT |
1026 | all-gzip: all-libiberty |
1027 | all-hello: all-libiberty | |
1028 | all-indent: | |
3585593d | 1029 | all-ispell: all-emacs19 |
79337c85 | 1030 | all-ld: all-libiberty all-bfd all-byacc all-flex |
ab1cbc67 PB |
1031 | configure-target-libg++: $(ALL_GCC) |
1032 | all-target-libg++: configure-target-libg++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio all-target-librx all-target-libstdc++ | |
1033 | configure-target-libgloss: $(ALL_GCC) | |
1034 | all-target-libgloss: configure-target-libgloss | |
1035 | configure-target-libio: $(ALL_GCC) | |
1036 | all-target-libio: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib | |
79337c85 | 1037 | all-libiberty: |
ab1cbc67 PB |
1038 | configure-target-librx: $(ALL_GCC) configure-target-newlib |
1039 | all-target-librx: configure-target-librx | |
1040 | configure-target-libstdc++: $(ALL_GCC) | |
1041 | all-target-libstdc++: configure-target-libstdc++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio | |
79337c85 ILT |
1042 | all-m4: all-libiberty |
1043 | all-make: all-libiberty | |
1044 | all-mmalloc: | |
ab1cbc67 PB |
1045 | configure-target-newlib: $(ALL_GCC) |
1046 | all-target-newlib: configure-target-newlib all-binutils all-gas all-gcc | |
275049c0 | 1047 | all-opcodes: all-bfd |
79337c85 | 1048 | all-patch: |
b255ccdb | 1049 | all-prms: all-libiberty |
79337c85 ILT |
1050 | all-rcs: |
1051 | all-readline: | |
1052 | all-recode: all-libiberty | |
ac259c28 JM |
1053 | all-sed: all-libiberty |
1054 | all-send-pr: all-prms | |
79337c85 ILT |
1055 | all-shellutils: |
1056 | all-sim: all-libiberty all-bfd | |
07362bd9 | 1057 | all-tar: all-libiberty |
79337c85 ILT |
1058 | all-tcl: |
1059 | all-tclX: all-tcl all-tk | |
1060 | all-tk: all-tcl | |
1061 | all-texinfo: all-libiberty | |
1062 | all-textutils: | |
1063 | all-tgas: all-libiberty all-bfd | |
1064 | all-time: | |
1065 | all-wdiff: | |
ab1cbc67 PB |
1066 | all-target-winsup: all-target-newlib |
1067 | configure-target-winsup: configure-target-newlib | |
79337c85 | 1068 | all-uudecode: all-libiberty |
ab1cbc67 PB |
1069 | configure-target-libiberty: $(ALL_GCC) |
1070 | all-target-libiberty: configure-target-libiberty all-gcc all-ld all-target-newlib | |
07362bd9 | 1071 | |
79337c85 | 1072 | ### other supporting targets |
07362bd9 | 1073 | |
79337c85 ILT |
1074 | MAKEDIRS= \ |
1075 | $(prefix) \ | |
1076 | $(exec_prefix) \ | |
1077 | $(tooldir) | |
fca4f908 | 1078 | |
79337c85 ILT |
1079 | .PHONY: install-dirs |
1080 | install-dirs: | |
1081 | @for i in $(MAKEDIRS) ; do \ | |
1082 | echo Making $$i... ; \ | |
62cd4a20 | 1083 | parent=`echo $$i | sed -e 's@/[^/]*$$@@' | sed -e 's@^$$@/@'`; \ |
79337c85 ILT |
1084 | if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \ |
1085 | if [ ! -d $$i ] ; then \ | |
1086 | if mkdir $$i ; then \ | |
1087 | true ; \ | |
1088 | else \ | |
1089 | exit 1 ; \ | |
1090 | fi ; \ | |
1091 | else \ | |
1092 | true ; \ | |
1093 | fi ; \ | |
1094 | done | |
23e3e7f9 | 1095 | |
618f57a9 | 1096 | |
79337c85 ILT |
1097 | dir.info: do-install-info |
1098 | if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \ | |
1099 | $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \ | |
1100 | mv -f dir.info.new dir.info ; \ | |
1101 | else true ; \ | |
72c09fbc | 1102 | fi |
6b7e5998 | 1103 | |
b1cceba2 DZ |
1104 | dist: |
1105 | @echo "Building a full distribution of this tree isn't done" | |
1106 | @echo "via 'make dist'. Check out the etc/ subdirectory" | |
1107 | ||
eb02fd64 RP |
1108 | etags tags: TAGS |
1109 | ||
753d5049 SC |
1110 | # Right now this just builds TAGS in each subdirectory. emacs19 has the |
1111 | # ability to use several tags files at once, so there is probably no need | |
1112 | # to combine them into one big TAGS file (like CVS 1.3 does). We could | |
1113 | # (if we felt like it) have this Makefile write a piece of elisp which | |
1114 | # the user could load to tell emacs19 where all the TAGS files we just | |
1115 | # built are. | |
1116 | TAGS: do-TAGS | |
eb02fd64 | 1117 | |
eb02fd64 RP |
1118 | # with the gnu make, this is done automatically. |
1119 | ||
01ec9588 | 1120 | Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag) |
a26878d1 | 1121 | $(SHELL) ./config.status |
eb02fd64 | 1122 | |
11954bf1 | 1123 | # |
01ec9588 | 1124 | # Support for building net releases |
11954bf1 | 1125 | |
01ec9588 JK |
1126 | # Files in devo used in any net release. |
1127 | # ChangeLog omitted because it may refer to files which are not in this | |
1128 | # distribution (perhaps it would be better to include it anyway). | |
d94d255d | 1129 | DEVO_SUPPORT= README Makefile.in configure configure.in \ |
9823504d | 1130 | config.guess config.sub config move-if-change \ |
81597186 | 1131 | mpw-README mpw-build.in mpw-config.in mpw-configure \ |
ab1cbc67 | 1132 | COPYING COPYING.LIB install.sh cfg-ml-com.in cfg-ml-pos.in |
01ec9588 JK |
1133 | |
1134 | # Files in devo/etc used in any net release. | |
1135 | # ChangeLog omitted because it may refer to files which are not in this | |
1136 | # distribution (perhaps it would be better to include it anyway). | |
6d681784 | 1137 | ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \ |
ab1cbc67 PB |
1138 | configure.texi standards.texi make-stds.texi \ |
1139 | configure.info* standards.info* cfg-paper.info* | |
01ec9588 | 1140 | |
40e16078 KR |
1141 | # When you use `make setup-dirs' or `make taz' you should always redefine |
1142 | # this macro. | |
1143 | SUPPORT_FILES = list-of-support-files-for-tool-in-question | |
65e21701 KR |
1144 | # Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF). |
1145 | DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in | |
40e16078 | 1146 | |
a54e05f6 KR |
1147 | .PHONY: taz |
1148 | ||
484fa12d JW |
1149 | taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \ |
1150 | texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo | |
1151 | # Make sure "diststuff" files get built properly. | |
65e21701 KR |
1152 | for f in $(DISTBISONFILES) ; do \ |
1153 | if [ -r $$f ]; then \ | |
7b636683 | 1154 | sed '/^BISON *=.*$$/s/.*/BISON = bison -y/' <$$f >tmp ; \ |
65e21701 KR |
1155 | mv -f tmp $$f ; \ |
1156 | else true; fi ; \ | |
1157 | done | |
484fa12d JW |
1158 | # Take out texinfo from a few places; make simple BISON=bison line. |
1159 | sed -e '/^all\.normal: /s/\all-texinfo //' \ | |
1160 | -e '/^ install-texinfo /d' \ | |
1161 | -e '/^BISON = /,/^$$/d' \ | |
1162 | -e '/^# BISON:/s/.*/BISON = bison -y/' \ | |
1163 | <Makefile.in >tmp | |
1164 | mv -f tmp Makefile.in | |
65e21701 | 1165 | # |
1d5fcc66 PB |
1166 | $(start-sanitize-Sanitize) |
1167 | @if [ -f .Sanitize ] ; then echo "RUN Sanitize FIRST!" ; false ; fi ; | |
1168 | $(end-sanitize-Sanitize) | |
40e16078 | 1169 | ./configure sun4 |
ab1cbc67 PB |
1170 | [ -z "$(CONFIGURE_TARGET_MODULES)" ] \ |
1171 | || $(MAKE) $(CONFIGURE_TARGET_MODULES) ALL_GCC="" \ | |
1172 | CC_FOR_TARGET="$(CC) CXX_FOR_TARGET="$(CXX)" | |
6b9e3a78 | 1173 | # Make links, and run "make diststuff" or "make info" when needed. |
a54e05f6 | 1174 | rm -rf proto-toplev ; mkdir proto-toplev |
7f9cb3b2 | 1175 | set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \ |
a54e05f6 KR |
1176 | for d in $$dirs ; do \ |
1177 | if [ -d $$d ]; then \ | |
ab1cbc67 PB |
1178 | if [ ! -f $$d/Makefile ] ; then true ; \ |
1179 | elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \ | |
1180 | (cd $$d ; $(MAKE) diststuff ) || exit 1 ; \ | |
6b9e3a78 | 1181 | elif grep '^info:' $$d/Makefile >/dev/null ; then \ |
ab1cbc67 | 1182 | (cd $$d ; $(MAKE) info ) || exit 1 ; \ |
6b9e3a78 | 1183 | fi ; \ |
7f9cb3b2 KR |
1184 | if [ -d $$d/proto-$$d.dir ]; then \ |
1185 | ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \ | |
1186 | else \ | |
1187 | ln -s ../$$d proto-toplev/$$d ; \ | |
1188 | fi ; \ | |
a54e05f6 | 1189 | else ln -s ../$$d proto-toplev/$$d ; fi ; \ |
40e16078 | 1190 | done |
3dbe0fa2 | 1191 | cd etc ; $(MAKE) info |
5600fbd2 | 1192 | $(MAKE) distclean |
a54e05f6 | 1193 | # |
40e16078 | 1194 | mkdir proto-toplev/etc |
15408b3b KR |
1195 | (cd proto-toplev/etc; \ |
1196 | for i in $(ETC_SUPPORT); do \ | |
40e16078 | 1197 | ln -s ../../etc/$$i . ; \ |
15408b3b | 1198 | done) |
a54e05f6 | 1199 | # |
04103845 | 1200 | # Take out texinfo from configurable dirs |
40e16078 KR |
1201 | rm proto-toplev/configure.in |
1202 | sed -e '/^host_tools=/s/texinfo //' \ | |
40e16078 | 1203 | <configure.in >proto-toplev/configure.in |
a54e05f6 | 1204 | # |
40e16078 KR |
1205 | mkdir proto-toplev/texinfo |
1206 | ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/ | |
7f9cb3b2 | 1207 | ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/ |
484fa12d | 1208 | ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/ |
40e16078 | 1209 | ln -s ../../texinfo/tex3patch proto-toplev/texinfo/ |
a561909f | 1210 | chmod og=u `find . -print` |
7f9cb3b2 | 1211 | (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \ |
1d2bb445 | 1212 | echo "==> Making $(TOOL)-$$VER.tar.gz"; \ |
a59b94d2 | 1213 | rm -f $(TOOL)-$$VER; ln -s proto-toplev $(TOOL)-$$VER; \ |
40e16078 | 1214 | tar cfh - $(TOOL)-$$VER \ |
5cc73086 | 1215 | | $(GZIPPROG) -v -9 >$(TOOL)-$$VER.tar.gz ) |
40e16078 | 1216 | |
484fa12d | 1217 | TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo |
7f9cb3b2 | 1218 | DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT) |
40e16078 | 1219 | |
96bfa612 | 1220 | .PHONY: gas.tar.gz |
7f9cb3b2 | 1221 | GAS_SUPPORT_DIRS= bfd include libiberty opcodes |
96bfa612 | 1222 | gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas |
484fa12d JW |
1223 | $(MAKE) -f Makefile.in taz TOOL=gas \ |
1224 | SUPPORT_FILES="$(GAS_SUPPORT_DIRS)" | |
40e16078 | 1225 | |
7f9cb3b2 | 1226 | # The FSF "binutils" release includes gprof and ld. |
96bfa612 | 1227 | .PHONY: binutils.tar.gz |
4be4b991 | 1228 | BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof |
96bfa612 | 1229 | binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils |
484fa12d | 1230 | $(MAKE) -f Makefile.in taz TOOL=binutils \ |
2492f942 | 1231 | SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat" |
7f9cb3b2 | 1232 | |
96bfa612 | 1233 | .PHONY: gas+binutils.tar.gz |
a54e05f6 | 1234 | GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof |
96bfa612 | 1235 | gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas |
484fa12d | 1236 | $(MAKE) -f Makefile.in taz TOOL=gas \ |
2492f942 | 1237 | SUPPORT_FILES="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat" |
79337c85 | 1238 | |
5600fbd2 | 1239 | .PHONY: libg++.tar.gz |
ab1cbc67 | 1240 | LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty |
5600fbd2 | 1241 | libg++.tar.gz: $(DIST_SUPPORT) libg++ |
484fa12d JW |
1242 | $(MAKE) -f Makefile.in taz TOOL=libg++ \ |
1243 | SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)" | |
5600fbd2 | 1244 | |
49dfa984 JM |
1245 | GNATS_SUPPORT_DIRS=include libiberty send-pr |
1246 | gnats.tar.gz: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats | |
a0bd8e18 | 1247 | $(MAKE) -f Makefile.in taz TOOL=gnats \ |
49dfa984 JM |
1248 | SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)" |
1249 | ||
1d5fcc66 | 1250 | .PHONY: gdb.tar.gz |
81597186 | 1251 | GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils |
ca2ce3b3 | 1252 | GDBTK_SUPPORT_DIRS= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi` |
1d5fcc66 PB |
1253 | gdb.tar.gz: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb |
1254 | $(MAKE) -f Makefile.in taz TOOL=gdb \ | |
ca2ce3b3 | 1255 | SUPPORT_FILES="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)" |
1d5fcc66 | 1256 | |
7166a308 | 1257 | .PHONY: newlib.tar.gz |
a220ba0f | 1258 | NEWLIB_SUPPORT_DIRS=libgloss |
04103845 | 1259 | # taz configures for the sun4 target which won't configure newlib. |
a220ba0f SC |
1260 | # We need newlib configured so that the .info files are made. |
1261 | # Unfortunately, it is not enough to just configure newlib separately: | |
1262 | # taz will build the .info files but since SUBDIRS won't contain newlib, | |
1263 | # distclean won't be run (leaving Makefile, config.status, and the tmp files | |
1264 | # used in building the .info files, eg: *.def, *.ref). | |
1265 | # Compensate here by configuring newlib for a simple (no multilib support) | |
1266 | # cross target (sparc64), building the info files, and doing make distclean | |
1267 | # ourselves. | |
7166a308 | 1268 | newlib.tar.gz: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib |
04103845 DE |
1269 | rootme=`pwd` ; \ |
1270 | cd newlib && ../configure --srcdir $$rootme/newlib \ | |
1271 | --host sun4 --target sparc64-elf | |
a220ba0f SC |
1272 | cd newlib ; make info |
1273 | cd newlib ; make distclean | |
7166a308 KR |
1274 | $(MAKE) -f Makefile.in taz TOOL=newlib \ |
1275 | SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \ | |
6b9e3a78 | 1276 | DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib |
7166a308 | 1277 | |
79337c85 ILT |
1278 | .NOEXPORT: |
1279 | MAKEOVERRIDES= | |
1280 | ||
1281 | # start-sanitize-chill | |
1282 | ## This is ugly, but I don't want GNU make to put these variables in | |
1283 | ## the environment. Older makes will see this as a set of targets | |
1284 | ## with no dependencies and no actions. | |
1285 | unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET : | |
1286 | # end-sanitize-chill | |
1287 | ||
eb02fd64 | 1288 | # end of Makefile.in |