]>
Commit | Line | Data |
---|---|---|
1 | # | |
2 | # Makefile for directory with subdirs to build. | |
3 | # Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation | |
4 | # | |
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 | |
17 | # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
18 | # | |
19 | ||
20 | srcdir = . | |
21 | ||
22 | prefix = /usr/local | |
23 | ||
24 | exec_prefix = $(prefix) | |
25 | bindir = $(exec_prefix)/bin | |
26 | libdir = $(exec_prefix)/lib | |
27 | tooldir = $(exec_prefix)/$(target) | |
28 | ||
29 | program_transform_name = | |
30 | ||
31 | datadir = $(prefix)/lib | |
32 | mandir = $(prefix)/man | |
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 | |
42 | infodir = $(prefix)/info | |
43 | includedir = $(prefix)/include | |
44 | docdir = $(datadir)/doc | |
45 | ||
46 | SHELL = /bin/sh | |
47 | ||
48 | INSTALL = $${srcroot}/install.sh -c | |
49 | INSTALL_PROGRAM = $(INSTALL) | |
50 | INSTALL_DATA = $(INSTALL) | |
51 | INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)' | |
52 | ||
53 | AS = as | |
54 | AR = ar | |
55 | AR_FLAGS = rc | |
56 | CC = cc | |
57 | CFLAGS = -g | |
58 | # start-sanitize-chill | |
59 | CHILLFLAGS = $(CFLAGS) | |
60 | CHILL_LIB = -lchill | |
61 | # end-sanitize-chill | |
62 | CXX = gcc | |
63 | CXXFLAGS = -g -O | |
64 | RANLIB = ranlib | |
65 | NM = nm | |
66 | MUNCH_NM = $(NM) | |
67 | GZIP = gzip | |
68 | ||
69 | # BISON: This line sed'ed to BISON = bison -y for FSF releases, don't remove. | |
70 | BISON = `if [ -f $${rootme}/byacc/byacc ] ; \ | |
71 | then echo $${rootme}/byacc/byacc ; \ | |
72 | else echo byacc ; \ | |
73 | fi` | |
74 | ||
75 | LEX = `if [ -f $${rootme}/flex/flex ] ; \ | |
76 | then echo $${rootme}/flex/flex ; \ | |
77 | else echo flex ; fi` | |
78 | ||
79 | MAKEINFO = `if [ -f $${rootme}/texinfo/makeinfo/makeinfo ] ; \ | |
80 | then echo $${rootme}/texinfo/makeinfo/makeinfo ; \ | |
81 | else echo makeinfo ; fi` | |
82 | # This just becomes part of the MAKEINFO definition passed down to | |
83 | # sub-makes. It lets flags be given on the command line while still | |
84 | # using the makeinfo from the object tree. | |
85 | MAKEINFOFLAGS = | |
86 | ||
87 | EXPECT = `if [ -f $${rootme}/expect/expect ] ; \ | |
88 | then echo $${rootme}/expect/expect ; \ | |
89 | else echo expect ; fi` | |
90 | ||
91 | RUNTEST = `if [ -f $${srcroot}/dejagnu/runtest ] ; \ | |
92 | then echo $${srcroot}/dejagnu/runtest ; \ | |
93 | else echo runtest ; fi` | |
94 | ||
95 | ||
96 | # libraries that may need to be augmented on a system-by-system basis | |
97 | X11_LIB = -lX11 | |
98 | ||
99 | # compilers to use to create programs which must be run in the build | |
100 | # environment. | |
101 | CC_FOR_BUILD = $(CC) | |
102 | CXX_FOR_BUILD = $(CXX) | |
103 | ||
104 | SUBDIRS = "this is set via configure, don't edit this" | |
105 | OTHERS = | |
106 | ||
107 | ALL = all.normal | |
108 | INSTALL_TARGET = install-dirs \ | |
109 | $(INSTALL_MODULES) \ | |
110 | $(INSTALL_TARGET_MODULES) \ | |
111 | $(INSTALL_X11_MODULES) \ | |
112 | install-gcc | |
113 | ||
114 | CC_FOR_TARGET = ` \ | |
115 | if [ -f $${rootme}/gcc/Makefile ] ; then \ | |
116 | echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/; \ | |
117 | else \ | |
118 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
119 | echo $(CC); \ | |
120 | else \ | |
121 | t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \ | |
122 | fi; \ | |
123 | fi` | |
124 | ||
125 | # start-sanitize-chill | |
126 | CHILL_FOR_TARGET = ` \ | |
127 | if [ -f $${rootme}/gcc/Makefile ] ; then \ | |
128 | echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/ -L$${rootme}/chillrt/; \ | |
129 | else \ | |
130 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
131 | echo $(CC); \ | |
132 | else \ | |
133 | t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \ | |
134 | fi; \ | |
135 | fi` | |
136 | ||
137 | # end-sanitize-chill | |
138 | ||
139 | CXX_FOR_TARGET = ` \ | |
140 | if [ -f $${rootme}/gcc/Makefile ] ; then \ | |
141 | echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/; \ | |
142 | else \ | |
143 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
144 | echo $(CXX); \ | |
145 | else \ | |
146 | t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \ | |
147 | fi; \ | |
148 | fi` | |
149 | ||
150 | AS_FOR_TARGET = ` \ | |
151 | if [ -f $${rootme}/gas/Makefile ] ; then \ | |
152 | echo $${rootme}/gas/as.new ; \ | |
153 | else \ | |
154 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
155 | echo $(AS); \ | |
156 | else \ | |
157 | t='$(program_transform_name)'; echo as | sed -e '' $$t ; \ | |
158 | fi; \ | |
159 | fi` | |
160 | ||
161 | AR_FOR_TARGET = ` \ | |
162 | if [ -f $${rootme}/binutils/Makefile ] ; then \ | |
163 | echo $${rootme}/binutils/ar ; \ | |
164 | else \ | |
165 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
166 | echo $(AR); \ | |
167 | else \ | |
168 | t='$(program_transform_name)'; echo ar | sed -e '' $$t ; \ | |
169 | fi; \ | |
170 | fi` | |
171 | ||
172 | RANLIB_FOR_TARGET = ` \ | |
173 | if [ -f $${rootme}/binutils/Makefile ] ; then \ | |
174 | echo $${rootme}/binutils/ranlib ; \ | |
175 | else \ | |
176 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
177 | echo $(RANLIB); \ | |
178 | else \ | |
179 | t='$(program_transform_name)'; echo ranlib | sed -e '' $$t ; \ | |
180 | fi; \ | |
181 | fi` | |
182 | ||
183 | NM_FOR_TARGET = ` \ | |
184 | if [ -f $${rootme}/binutils/Makefile ] ; then \ | |
185 | echo $${rootme}/binutils/nm ; \ | |
186 | else \ | |
187 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
188 | echo $(NM); \ | |
189 | else \ | |
190 | t='$(program_transform_name)'; echo nm | sed -e '' $$t ; \ | |
191 | fi; \ | |
192 | fi` | |
193 | ||
194 | # FIXME: This is badly named. | |
195 | XTRAFLAGS = ` \ | |
196 | if [ -f $${rootme}/gcc/Makefile ] ; then \ | |
197 | if [ -f $${rootme}/newlib/Makefile ] ; then \ | |
198 | echo -I$${rootme}/newlib/targ-include -I$${srcroot}/newlib/libc/include -I$${rootme}/gcc/include -nostdinc ; \ | |
199 | else \ | |
200 | echo -I$${rootme}/gcc/include ; \ | |
201 | fi ; \ | |
202 | else \ | |
203 | echo ; \ | |
204 | fi` | |
205 | ||
206 | PRMS = all-prms | |
207 | ||
208 | #### host and target specific makefile fragments come in here. | |
209 | ### | |
210 | ||
211 | # Flags to pass down to all sub-makes. | |
212 | # Please keep these in alphabetical order. | |
213 | BASE_FLAGS_TO_PASS = \ | |
214 | "AR_FLAGS=$(AR_FLAGS)" \ | |
215 | "AR_FOR_TARGET=$(AR_FOR_TARGET)" \ | |
216 | "AS_FOR_TARGET=$(AS_FOR_TARGET)" \ | |
217 | "BISON=$(BISON)" \ | |
218 | "CC_FOR_BUILD=$(CC_FOR_BUILD)" \ | |
219 | "CC_FOR_TARGET=$(CC_FOR_TARGET)" \ | |
220 | "CFLAGS=$(CFLAGS)" \ | |
221 | $(start-sanitize-chill)\ | |
222 | "CHILLFLAGS=$(CHILLFLAGS)" \ | |
223 | "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \ | |
224 | "CHILL_LIB=$(CHILL_LIB)" \ | |
225 | $(end-sanitize-chill)\ | |
226 | "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \ | |
227 | "CXXFLAGS=$(CXXFLAGS)" \ | |
228 | "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \ | |
229 | "GCC_FOR_TARGET=$(CC_FOR_TARGET)" \ | |
230 | "INSTALL=$(INSTALL)" \ | |
231 | "INSTALL_DATA=$(INSTALL_DATA)" \ | |
232 | "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ | |
233 | "INSTALL_XFORM=$(INSTALL_XFORM)" \ | |
234 | "LDFLAGS=$(LDFLAGS)" \ | |
235 | "LEX=$(LEX)" \ | |
236 | "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \ | |
237 | "MUNCH_NM=$(MUNCH_NM)" \ | |
238 | "NM_FOR_TARGET=$(NM_FOR_TARGET)" \ | |
239 | "PRMS=$(PRMS)" \ | |
240 | "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \ | |
241 | "EXPECT=$(EXPECT)" \ | |
242 | "RUNTEST=$(RUNTEST)" \ | |
243 | "RUNTESTFLAGS=$(RUNTESTFLAGS)" \ | |
244 | "XTRAFLAGS_FOR_TARGET=$(XTRAFLAGS)" \ | |
245 | "exec_prefix=$(exec_prefix)" \ | |
246 | "prefix=$(prefix)" \ | |
247 | "tooldir=$(tooldir)" | |
248 | ||
249 | # Flags to pass down to most sub-makes, in which we're building with | |
250 | # the host environment. | |
251 | # If any variables are added here, they must be added to do-*, below. | |
252 | EXTRA_HOST_FLAGS = \ | |
253 | 'AR=$(AR)' \ | |
254 | 'AS=$(AS)' \ | |
255 | 'CC=$(CC)' \ | |
256 | 'CXX=$(CXX)' \ | |
257 | 'NM=$(NM)' \ | |
258 | 'RANLIB=$(RANLIB)' \ | |
259 | 'XTRAFLAGS=' | |
260 | ||
261 | FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) | |
262 | ||
263 | # Flags that are concerned with the location of the X11 include files | |
264 | # and library files | |
265 | X11_FLAGS_TO_PASS = \ | |
266 | "X11_INCLUDE_FLAGS=$(X11_INCLUDE_FLAGS)" \ | |
267 | "X11_LIB_FLAGS=$(X11_LIB_FLAGS)" \ | |
268 | "X11_LIB=$(X11_LIB)" | |
269 | ||
270 | # Flags to pass down to makes which are built with the target environment. | |
271 | # The double $ decreases the length of the command line; the variables | |
272 | # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them. | |
273 | # If any variables are added here, they must be added to do-*, below. | |
274 | EXTRA_TARGET_FLAGS = \ | |
275 | 'AR=$$(AR_FOR_TARGET)' \ | |
276 | 'AS=$$(AS_FOR_TARGET)' \ | |
277 | 'CC=$$(CC_FOR_TARGET)' \ | |
278 | 'CXX=$$(CXX_FOR_TARGET)' \ | |
279 | 'NM=$$(NM_FOR_TARGET)' \ | |
280 | 'RANLIB=$$(RANLIB_FOR_TARGET)' \ | |
281 | 'XTRAFLAGS=$$(XTRAFLAGS_FOR_TARGET)' | |
282 | ||
283 | TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS) | |
284 | ||
285 | # Flags to pass down to gcc. gcc builds a library, libgcc.a, so it | |
286 | # unfortunately needs the native compiler and the target ar and | |
287 | # ranlib. | |
288 | # If any variables are added here, they must be added to do-*, below. | |
289 | # The HOST_* variables are a special case, which are used for the gcc | |
290 | # cross-building scheme. | |
291 | HOST_CC = $(CC_FOR_BUILD) | |
292 | HOST_PREFIX = | |
293 | HOST_PREFIX_1 = loser- | |
294 | EXTRA_GCC_FLAGS = \ | |
295 | 'AR=$$(AR_FOR_TARGET)' \ | |
296 | 'AS=$(AS)' \ | |
297 | 'CC=$(CC)' \ | |
298 | 'CXX=$(CXX)' \ | |
299 | 'HOST_CC=$(CC_FOR_BUILD)' \ | |
300 | 'HOST_PREFIX=$(HOST_PREFIX)' \ | |
301 | 'HOST_PREFIX_1=$(HOST_PREFIX_1)' \ | |
302 | 'NM=$(NM)' \ | |
303 | 'RANLIB=$$(RANLIB_FOR_TARGET)' \ | |
304 | 'XTRAFLAGS=' | |
305 | ||
306 | GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) | |
307 | ||
308 | # This is a list of the targets for all of the modules which are compiled | |
309 | # using $(FLAGS_TO_PASS). | |
310 | ALL_MODULES = \ | |
311 | all-autoconf \ | |
312 | all-bfd \ | |
313 | all-binutils \ | |
314 | all-byacc \ | |
315 | all-cvs \ | |
316 | all-dejagnu \ | |
317 | all-diff \ | |
318 | all-dosutils \ | |
319 | all-etc \ | |
320 | all-fileutils \ | |
321 | all-find \ | |
322 | all-flex \ | |
323 | all-gas \ | |
324 | all-gawk \ | |
325 | all-gdb \ | |
326 | all-gprof \ | |
327 | all-grep \ | |
328 | all-gzip \ | |
329 | all-hello \ | |
330 | all-indent \ | |
331 | all-ispell \ | |
332 | all-ld \ | |
333 | all-libiberty \ | |
334 | all-m4 \ | |
335 | all-make \ | |
336 | all-mmalloc \ | |
337 | all-opcodes \ | |
338 | all-patch \ | |
339 | all-prms \ | |
340 | all-rcs \ | |
341 | all-readline \ | |
342 | all-release \ | |
343 | all-recode \ | |
344 | all-sed \ | |
345 | all-send-pr \ | |
346 | all-shellutils \ | |
347 | all-sim \ | |
348 | all-tar \ | |
349 | all-tcl \ | |
350 | all-texinfo \ | |
351 | all-textutils \ | |
352 | all-tgas \ | |
353 | all-time \ | |
354 | all-uudecode \ | |
355 | all-wdiff | |
356 | ||
357 | # This is a list of the check targets for all of the modules which are | |
358 | # compiled using $(FLAGS_TO_PASS). | |
359 | CHECK_MODULES = \ | |
360 | check-autoconf \ | |
361 | check-bfd \ | |
362 | check-binutils \ | |
363 | check-byacc \ | |
364 | check-cvs \ | |
365 | check-dejagnu \ | |
366 | check-diff \ | |
367 | check-etc \ | |
368 | check-fileutils \ | |
369 | check-find \ | |
370 | check-flex \ | |
371 | check-gas \ | |
372 | check-gawk \ | |
373 | check-gdb \ | |
374 | check-gprof \ | |
375 | check-grep \ | |
376 | check-gzip \ | |
377 | check-hello \ | |
378 | check-indent \ | |
379 | check-ispell \ | |
380 | check-ld \ | |
381 | check-libiberty \ | |
382 | check-m4 \ | |
383 | check-make \ | |
384 | check-mmcheckoc \ | |
385 | check-opcodes \ | |
386 | check-patch \ | |
387 | check-prms \ | |
388 | check-rcs \ | |
389 | check-readline \ | |
390 | check-recode \ | |
391 | check-sed \ | |
392 | check-send-pr \ | |
393 | check-shellutils \ | |
394 | check-sim \ | |
395 | check-tar \ | |
396 | check-tcl \ | |
397 | check-texinfo \ | |
398 | check-textutils \ | |
399 | check-tgas \ | |
400 | check-time \ | |
401 | check-uudecode \ | |
402 | check-wdiff | |
403 | ||
404 | # This is a list of the install targets for all of the modules which are | |
405 | # compiled using $(FLAGS_TO_PASS). | |
406 | INSTALL_MODULES = \ | |
407 | install-autoconf \ | |
408 | install-bfd \ | |
409 | install-binutils \ | |
410 | install-byacc \ | |
411 | install-cvs \ | |
412 | install-dejagnu \ | |
413 | install-diff \ | |
414 | install-etc \ | |
415 | install-fileutils \ | |
416 | install-find \ | |
417 | install-flex \ | |
418 | install-gas \ | |
419 | install-gawk \ | |
420 | install-gdb \ | |
421 | install-glob \ | |
422 | install-gprof \ | |
423 | install-grep \ | |
424 | install-gzip \ | |
425 | install-hello \ | |
426 | install-indent \ | |
427 | install-ispell \ | |
428 | install-ld \ | |
429 | install-libiberty \ | |
430 | install-m4 \ | |
431 | install-make \ | |
432 | install-mmalloc \ | |
433 | install-opcodes \ | |
434 | install-patch \ | |
435 | install-prms \ | |
436 | install-rcs \ | |
437 | install-readline \ | |
438 | install-recode \ | |
439 | install-sed \ | |
440 | install-send-pr \ | |
441 | install-shellutils \ | |
442 | install-sim \ | |
443 | install-tar \ | |
444 | install-tcl \ | |
445 | install-texinfo \ | |
446 | install-textutils \ | |
447 | install-tgas \ | |
448 | install-time \ | |
449 | install-uudecode \ | |
450 | install-wdiff | |
451 | ||
452 | # This is a list of the targets for all of the modules which are compiled | |
453 | # using $(X11_FLAGS_TO_PASS). | |
454 | ALL_X11_MODULES = \ | |
455 | all-emacs \ | |
456 | all-expect \ | |
457 | all-tclX \ | |
458 | all-tk | |
459 | ||
460 | # This is a list of the check targets for all of the modules which are | |
461 | # compiled using $(X11_FLAGS_TO_PASS). | |
462 | CHECK_X11_MODULES = \ | |
463 | check-emacs \ | |
464 | check-expect \ | |
465 | check-tclX \ | |
466 | check-tk | |
467 | ||
468 | # This is a list of the install targets for all the modules which are | |
469 | # compiled using $(X11_FLAGS_TO_PASS). | |
470 | INSTALL_X11_MODULES = \ | |
471 | install-emacs \ | |
472 | install-expect \ | |
473 | install-tclX \ | |
474 | install-tk | |
475 | ||
476 | # This is a list of the targets for all of the modules which are compiled | |
477 | # using $(TARGET_FLAGS_TO_PASS). | |
478 | ALL_TARGET_MODULES = \ | |
479 | $(start-sanitize-chill) \ | |
480 | all-chillrt \ | |
481 | $(end-sanitize-chill) \ | |
482 | all-libio \ | |
483 | all-libg++ \ | |
484 | all-newlib \ | |
485 | all-xiberty | |
486 | ||
487 | # This is a list of the check targets for all of the modules which are | |
488 | # compiled using $(TARGET_FLAGS_TO_PASS). | |
489 | CHECK_TARGET_MODULES = \ | |
490 | $(start-sanitize-chill) \ | |
491 | check-chillrt \ | |
492 | $(end-sanitize-chill) \ | |
493 | check-libio \ | |
494 | check-libg++ \ | |
495 | check-newlib \ | |
496 | check-xiberty | |
497 | ||
498 | # This is a list of the install targets for all of the modules which are | |
499 | # compiled using $(TARGET_FLAGS_TO_PASS). | |
500 | INSTALL_TARGET_MODULES = \ | |
501 | $(start-sanitize-chill) \ | |
502 | install-chillrt \ | |
503 | $(end-sanitize-chill) \ | |
504 | install-libio \ | |
505 | install-libg++ \ | |
506 | install-newlib \ | |
507 | install-xiberty | |
508 | ||
509 | # This is a shell case of all modules which are compiled using | |
510 | # $(TARGET_FLAGS_TO_PASS), used in the do-X rule. | |
511 | TARGET_LIBS = libio | libg++ | newlib | xiberty | |
512 | # start-sanitize-chill | |
513 | TARGET_LIBS = chillrt | libio | libg++ | newlib | xiberty | |
514 | # end-sanitize-chill | |
515 | ||
516 | # The first rule in the file had better be this one. Don't put any above it. | |
517 | all: all.normal | |
518 | .PHONY: all | |
519 | ||
520 | # The target built for a native build. | |
521 | .PHONY: all.normal | |
522 | all.normal: \ | |
523 | $(ALL_MODULES) \ | |
524 | $(ALL_TARGET_MODULES) \ | |
525 | $(ALL_X11_MODULES) \ | |
526 | all-gcc | |
527 | ||
528 | # Do a target for all the subdirectories. A ``make do-X'' will do a | |
529 | # ``make X'' in all subdirectories (because, in general, there is a | |
530 | # dependency (below) of X upon do-X, a ``make X'' will also do this, | |
531 | # but it may do additional work as well). | |
532 | # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once, | |
533 | # because it is so large that it can easily overflow the command line | |
534 | # length limit on some systems. | |
535 | DO_X = \ | |
536 | do-clean \ | |
537 | do-distclean \ | |
538 | do-dvi \ | |
539 | do-info \ | |
540 | do-install-info \ | |
541 | do-installcheck \ | |
542 | do-mostlyclean \ | |
543 | do-realclean | |
544 | .PHONY: $(DO_X) | |
545 | $(DO_X): | |
546 | @target=`echo $@ | sed -e 's/^do-//'`; \ | |
547 | rootme=`pwd`; export rootme; \ | |
548 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
549 | for i in $(SUBDIRS); do \ | |
550 | if [ -f ./$$i/Makefile ]; then \ | |
551 | case $$i in \ | |
552 | $(TARGET_LIBS) ) \ | |
553 | for flag in $(EXTRA_TARGET_FLAGS); do \ | |
554 | eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \ | |
555 | done; \ | |
556 | ;; \ | |
557 | gcc) \ | |
558 | for flag in $(EXTRA_GCC_FLAGS); do \ | |
559 | eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \ | |
560 | done; \ | |
561 | ;; \ | |
562 | *) \ | |
563 | for flag in $(EXTRA_HOST_FLAGS); do \ | |
564 | eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \ | |
565 | done; \ | |
566 | ;; \ | |
567 | esac ; \ | |
568 | export AR AS CC CXX NM RANLIB XTRAFLAGS; \ | |
569 | if (cd ./$$i; \ | |
570 | $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \ | |
571 | "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \ | |
572 | "RANLIB=$${RANLIB}" "XTRAFLAGS=$${XTRAFLAGS}" \ | |
573 | $${target}); \ | |
574 | then true; else exit 1; fi; \ | |
575 | else true; fi; \ | |
576 | done | |
577 | ||
578 | # Here are the targets which correspond to the do-X targets. | |
579 | ||
580 | .PHONY: info installcheck dvi install-info | |
581 | .PHONY: clean distclean mostlyclean realclean local-clean local-distclean | |
582 | info: do-info | |
583 | installcheck: do-installcheck | |
584 | dvi: do-dvi | |
585 | ||
586 | install-info: do-install-info dir.info | |
587 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
588 | if [ -f dir.info ] ; then \ | |
589 | $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \ | |
590 | else true ; fi | |
591 | ||
592 | local-clean: | |
593 | -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E | |
594 | ||
595 | local-distclean: | |
596 | -rm -f Makefile config.status | |
597 | ||
598 | clean: do-clean local-clean | |
599 | mostlyclean: do-mostlyclean local-clean | |
600 | distclean: do-distclean local-clean local-distclean | |
601 | realclean: do-realclean local-clean local-distclean | |
602 | ||
603 | # Check target. | |
604 | ||
605 | .PHONY: check | |
606 | check: $(CHECK_MODULES) \ | |
607 | $(CHECK_TARGET_MODULES) \ | |
608 | $(CHECK_X11_MODULES) \ | |
609 | check-gcc | |
610 | ||
611 | # Installation targets. | |
612 | ||
613 | .PHONY: install uninstall vault-install | |
614 | install: $(INSTALL_TARGET) | |
615 | ||
616 | uninstall: | |
617 | @echo "the uninstall target is not supported in this tree" | |
618 | ||
619 | vault-install: | |
620 | @if [ -f ./release/vault-install ] ; then \ | |
621 | ./release/vault-install $(host_alias) $(target_alias) ; \ | |
622 | else \ | |
623 | true ; \ | |
624 | fi | |
625 | ||
626 | .PHONY: install.all | |
627 | install.all: install-no-fixedincludes | |
628 | @if [ -f ./gcc/Makefile ] ; then \ | |
629 | rootme=`pwd` ; export rootme ; \ | |
630 | (cd ./gcc; \ | |
631 | $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \ | |
632 | else \ | |
633 | true ; \ | |
634 | fi | |
635 | ||
636 | # install-no-fixedincludes is used because Cygnus can not distribute | |
637 | # the fixed header files. | |
638 | .PHONY: install-no-fixedincludes | |
639 | install-no-fixedincludes: \ | |
640 | install-dirs \ | |
641 | $(INSTALL_MODULES) \ | |
642 | $(INSTALL_TARGET_MODULES) \ | |
643 | $(INSTALL_X11_MODULES) \ | |
644 | gcc-no-fixedincludes | |
645 | ||
646 | # Install the gcc headers files, but not the fixed include files, | |
647 | # which Cygnus is not allowed to distribute. This rule is very | |
648 | # dependent on the workings of the gcc Makefile.in. | |
649 | .PHONY: gcc-no-fixedincludes | |
650 | gcc-no-fixedincludes: | |
651 | @if [ -f ./gcc/Makefile ]; then \ | |
652 | rm -rf gcc/tmp-include; \ | |
653 | mv gcc/include gcc/tmp-include 2>/dev/null; \ | |
654 | mkdir gcc/include; \ | |
655 | cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \ | |
656 | touch gcc/stmp-fixinc; \ | |
657 | rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \ | |
658 | rootme=`pwd`; export rootme; \ | |
659 | srcroot=`cd $(srcdir); pwd` ; export srcroot; \ | |
660 | (cd ./gcc; \ | |
661 | $(MAKE) $(GCC_FLAGS_TO_PASS) install); \ | |
662 | rm -rf gcc/include; \ | |
663 | mv gcc/tmp-include gcc/include 2>/dev/null; \ | |
664 | else true; fi | |
665 | ||
666 | # This rule is used to build the modules which use FLAGS_TO_PASS. To | |
667 | # build a target all-X means to cd to X and make all. | |
668 | # all-glob is handled specially because it doesn't actually build. | |
669 | .PHONY: $(ALL_MODULES) all-glob | |
670 | $(ALL_MODULES) all-glob: | |
671 | @dir=`echo $@ | sed -e 's/all-//'`; \ | |
672 | if [ -f ./$${dir}/Makefile ] ; then \ | |
673 | rootme=`pwd`; export rootme; \ | |
674 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
675 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \ | |
676 | else \ | |
677 | true; \ | |
678 | fi | |
679 | ||
680 | # This rule is used to check the modules which use FLAGS_TO_PASS. To | |
681 | # build a target check-X means to cd to X and make all. | |
682 | .PHONY: $(CHECK_MODULES) | |
683 | $(CHECK_MODULES): | |
684 | @dir=`echo $@ | sed -e 's/check-//'`; \ | |
685 | if [ -f ./$${dir}/Makefile ] ; then \ | |
686 | rootme=`pwd`; export rootme; \ | |
687 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
688 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \ | |
689 | else \ | |
690 | true; \ | |
691 | fi | |
692 | ||
693 | # This rule is used to install the modules which use FLAGS_TO_PASS. | |
694 | # To build a target install-X means to cd to X and make install. | |
695 | .PHONY: $(INSTALL_MODULES) | |
696 | $(INSTALL_MODULES): install-dirs | |
697 | @dir=`echo $@ | sed -e 's/install-//'`; \ | |
698 | if [ -f ./$${dir}/Makefile ] ; then \ | |
699 | rootme=`pwd`; export rootme; \ | |
700 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
701 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \ | |
702 | else \ | |
703 | true; \ | |
704 | fi | |
705 | ||
706 | # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS. | |
707 | # To build a target all-X means to cd to X and make all. | |
708 | .PHONY: $(ALL_TARGET_MODULES) | |
709 | $(ALL_TARGET_MODULES): | |
710 | @dir=`echo $@ | sed -e 's/all-//'`; \ | |
711 | if [ -f ./$${dir}/Makefile ] ; then \ | |
712 | rootme=`pwd`; export rootme; \ | |
713 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
714 | (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \ | |
715 | else \ | |
716 | true; \ | |
717 | fi | |
718 | ||
719 | # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS. | |
720 | # To build a target install-X means to cd to X and make install. | |
721 | .PHONY: $(CHECK_TARGET_MODULES) | |
722 | $(CHECK_TARGET_MODULES): | |
723 | @dir=`echo $@ | sed -e 's/check-//'`; \ | |
724 | if [ -f ./$${dir}/Makefile ] ; then \ | |
725 | rootme=`pwd`; export rootme; \ | |
726 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
727 | (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) check); \ | |
728 | else \ | |
729 | true; \ | |
730 | fi | |
731 | ||
732 | # This rule is used to install the modules which use | |
733 | # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X | |
734 | # and make install. | |
735 | .PHONY: $(INSTALL_TARGET_MODULES) | |
736 | $(INSTALL_TARGET_MODULES): install-dirs | |
737 | @dir=`echo $@ | sed -e 's/install-//'`; \ | |
738 | if [ -f ./$${dir}/Makefile ] ; then \ | |
739 | rootme=`pwd`; export rootme; \ | |
740 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
741 | (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \ | |
742 | else \ | |
743 | true; \ | |
744 | fi | |
745 | ||
746 | # This rule is used to build the modules which use X11_FLAGS_TO_PASS. | |
747 | # To build a target all-X means to cd to X and make all. | |
748 | .PHONY: $(ALL_X11_MODULES) | |
749 | $(ALL_X11_MODULES): | |
750 | @dir=`echo $@ | sed -e 's/all-//'`; \ | |
751 | if [ -f ./$${dir}/Makefile ] ; then \ | |
752 | rootme=`pwd`; export rootme; \ | |
753 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
754 | (cd $${dir}; \ | |
755 | $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \ | |
756 | else \ | |
757 | true; \ | |
758 | fi | |
759 | ||
760 | # This rule is used to check the modules which use X11_FLAGS_TO_PASS. | |
761 | # To build a target check-X means to cd to X and make all. | |
762 | .PHONY: $(CHECK_X11_MODULES) | |
763 | $(CHECK_X11_MODULES): | |
764 | @dir=`echo $@ | sed -e 's/check-//'`; \ | |
765 | if [ -f ./$${dir}/Makefile ] ; then \ | |
766 | rootme=`pwd`; export rootme; \ | |
767 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
768 | (cd $${dir}; \ | |
769 | $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \ | |
770 | else \ | |
771 | true; \ | |
772 | fi | |
773 | ||
774 | # This rule is used to install the modules which use X11_FLAGS_TO_PASS. | |
775 | # To build a target install-X means to cd to X and make install. | |
776 | .PHONY: $(INSTALL_X11_MODULES) | |
777 | $(INSTALL_X11_MODULES): | |
778 | @dir=`echo $@ | sed -e 's/install-//'`; \ | |
779 | if [ -f ./$${dir}/Makefile ] ; then \ | |
780 | rootme=`pwd`; export rootme; \ | |
781 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
782 | (cd $${dir}; \ | |
783 | $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \ | |
784 | else \ | |
785 | true; \ | |
786 | fi | |
787 | ||
788 | # gcc is the only module which uses GCC_FLAGS_TO_PASS. | |
789 | .PHONY: all-gcc | |
790 | all-gcc: | |
791 | @if [ -f ./gcc/Makefile ] ; then \ | |
792 | rootme=`pwd`; export rootme; \ | |
793 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
794 | (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \ | |
795 | else \ | |
796 | true; \ | |
797 | fi | |
798 | ||
799 | .PHONY: check-gcc | |
800 | check-gcc: | |
801 | @if [ -f ./gcc/Makefile ] ; then \ | |
802 | rootme=`pwd`; export rootme; \ | |
803 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
804 | (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \ | |
805 | else \ | |
806 | true; \ | |
807 | fi | |
808 | ||
809 | .PHONY: install-gcc | |
810 | install-gcc: | |
811 | @if [ -f ./gcc/Makefile ] ; then \ | |
812 | rootme=`pwd`; export rootme; \ | |
813 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
814 | (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \ | |
815 | else \ | |
816 | true; \ | |
817 | fi | |
818 | ||
819 | # This is a list of inter-dependencies among modules. | |
820 | all-autoconf: | |
821 | all-bfd: | |
822 | all-binutils: all-libiberty all-opcodes all-bfd all-flex | |
823 | all-byacc: | |
824 | # start-sanitize-chill | |
825 | all-chillrt: all-binutils all-gas all-gcc all-newlib | |
826 | # end-sanitize-chill | |
827 | all-cvs: | |
828 | all-dejagnu: | |
829 | all-diff: all-libiberty | |
830 | all-emacs: | |
831 | all-etc: | |
832 | all-expect: all-tcl all-tk | |
833 | all-fileutils: all-libiberty | |
834 | all-find: | |
835 | all-flex: all-libiberty all-byacc | |
836 | all-gas: all-libiberty all-opcodes all-bfd | |
837 | all-gawk: | |
838 | all-gcc: all-libiberty all-byacc all-binutils all-gas | |
839 | all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-glob all-byacc all-sim | |
840 | all-glob: | |
841 | all-gprof: all-libiberty all-bfd | |
842 | all-grep: all-libiberty | |
843 | all-gzip: all-libiberty | |
844 | all-hello: all-libiberty | |
845 | all-indent: | |
846 | all-ispell: all-emacs | |
847 | all-ld: all-libiberty all-bfd all-byacc all-flex | |
848 | all-libg++: all-gas all-ld all-gcc all-xiberty all-newlib all-libio | |
849 | all-libiberty: | |
850 | all-m4: all-libiberty | |
851 | all-make: all-libiberty | |
852 | all-mmalloc: | |
853 | all-newlib: all-binutils all-gas all-gcc | |
854 | all-opcodes: all-bfd | |
855 | all-patch: | |
856 | all-prms: all-libiberty | |
857 | all-rcs: | |
858 | all-readline: | |
859 | all-recode: all-libiberty | |
860 | all-sed: all-libiberty | |
861 | all-send-pr: all-prms | |
862 | all-shellutils: | |
863 | all-sim: all-libiberty all-bfd | |
864 | all-tar: all-libiberty | |
865 | all-tcl: | |
866 | all-tclX: all-tcl all-tk | |
867 | all-tk: all-tcl | |
868 | all-texinfo: all-libiberty | |
869 | all-textutils: | |
870 | all-tgas: all-libiberty all-bfd | |
871 | all-time: | |
872 | all-wdiff: | |
873 | all-uudecode: all-libiberty | |
874 | all-xiberty: all-gcc all-newlib | |
875 | ||
876 | ### other supporting targets | |
877 | ||
878 | MAKEDIRS= \ | |
879 | $(prefix) \ | |
880 | $(exec_prefix) \ | |
881 | $(tooldir) | |
882 | ||
883 | .PHONY: install-dirs | |
884 | install-dirs: | |
885 | @for i in $(MAKEDIRS) ; do \ | |
886 | echo Making $$i... ; \ | |
887 | parent=`echo $$i | sed -e 's@/[^/]*$$@@' | sed -e 's@^$$@/@'`; \ | |
888 | if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \ | |
889 | if [ ! -d $$i ] ; then \ | |
890 | if mkdir $$i ; then \ | |
891 | true ; \ | |
892 | else \ | |
893 | exit 1 ; \ | |
894 | fi ; \ | |
895 | else \ | |
896 | true ; \ | |
897 | fi ; \ | |
898 | done | |
899 | ||
900 | ||
901 | dir.info: do-install-info | |
902 | if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \ | |
903 | $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \ | |
904 | mv -f dir.info.new dir.info ; \ | |
905 | else true ; \ | |
906 | fi | |
907 | ||
908 | dist: | |
909 | @echo "Building a full distribution of this tree isn't done" | |
910 | @echo "via 'make dist'. Check out the etc/ subdirectory" | |
911 | ||
912 | etags tags: TAGS | |
913 | ||
914 | TAGS: | |
915 | etags `$(MAKE) ls` | |
916 | ||
917 | ls: | |
918 | @echo Makefile | |
919 | @for i in $(SUBDIRS); \ | |
920 | do \ | |
921 | (cd $$i; \ | |
922 | pwd=`pwd`; \ | |
923 | wd=`basename $$pwd`; \ | |
924 | for j in `$(MAKE) ls`; \ | |
925 | do \ | |
926 | echo $$wd/$$j; \ | |
927 | done) \ | |
928 | done | |
929 | ||
930 | # with the gnu make, this is done automatically. | |
931 | ||
932 | Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag) | |
933 | $(SHELL) ./config.status | |
934 | ||
935 | # | |
936 | # Support for building net releases | |
937 | ||
938 | # Files in devo used in any net release. | |
939 | # ChangeLog omitted because it may refer to files which are not in this | |
940 | # distribution (perhaps it would be better to include it anyway). | |
941 | DEVO_SUPPORT= README Makefile.in configure configure.in \ | |
942 | config.guess config.sub config move-if-change \ | |
943 | COPYING COPYING.LIB install.sh | |
944 | ||
945 | # Files in devo/etc used in any net release. | |
946 | # ChangeLog omitted because it may refer to files which are not in this | |
947 | # distribution (perhaps it would be better to include it anyway). | |
948 | ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \ | |
949 | configure.texi standards.texi make-stds.texi | |
950 | ||
951 | GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline glob sim | |
952 | GDB_SUPPORT_FILES= $(GDB_SUPPORT_DIRS) | |
953 | ||
954 | .PHONY: setup-dirs-gdb gdb.tar.gz make-gdb.tar.gz | |
955 | setup-dirs-gdb: | |
956 | ./configure sun4 | |
957 | $(MAKE) clean | |
958 | ./configure -rm sun4 | |
959 | chmod og=u `find etc $(DEVO_SUPPORT) $(GDB_SUPPORT_FILES) -print` | |
960 | ||
961 | gdb.tar.gz: setup-dirs-gdb | |
962 | (cd gdb; $(MAKE) -f Makefile.in make-proto-gdb.dir BISON="byacc") | |
963 | (cd gdb; $(MAKE) -f Makefile.in make-proto-testsuite.dir) | |
964 | $(MAKE) $(MFLAGS) -f Makefile.in make-gdb.tar.gz | |
965 | ||
966 | make-gdb.tar.gz: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/texinfo.tex | |
967 | rm -rf proto-toplev; mkdir proto-toplev | |
968 | ln -s ../gdb/proto-gdb.dir proto-toplev/gdb | |
969 | (cd proto-toplev; for i in $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS); do \ | |
970 | ln -s ../$$i . ; \ | |
971 | done) | |
972 | mkdir proto-toplev/etc | |
973 | (cd proto-toplev/etc; for i in $(ETC_SUPPORT); do \ | |
974 | ln -s ../../etc/$$i . ; \ | |
975 | done) | |
976 | # Put only one copy (four hard links) of COPYING in the tar file. | |
977 | rm proto-toplev/bfd/COPYING | |
978 | ln proto-toplev/gdb/COPYING proto-toplev/bfd/COPYING | |
979 | rm proto-toplev/include/COPYING | |
980 | ln proto-toplev/gdb/COPYING proto-toplev/include/COPYING | |
981 | rm proto-toplev/readline/COPYING | |
982 | ln proto-toplev/gdb/COPYING proto-toplev/readline/COPYING | |
983 | ||
984 | # Change the bug reporting address in configure to bug-gdb | |
985 | rm proto-toplev/configure | |
986 | sed -e 's/[email protected]/[email protected]/' \ | |
987 | <configure >proto-toplev/configure | |
988 | chmod a+x proto-toplev/configure | |
989 | ||
990 | # Take out texinfo and glob from configurable dirs | |
991 | rm proto-toplev/configure.in | |
992 | sed -e '/^host_tools=/s/texinfo //' \ | |
993 | -e '/^host_libs=/s/glob //' \ | |
994 | <configure.in >proto-toplev/configure.in | |
995 | ||
996 | # Take out texinfo from a few places; make simple BISON=bison line. | |
997 | rm proto-toplev/Makefile.in | |
998 | sed -e '/^all\.normal: /s/\all-texinfo //' \ | |
999 | -e '/^ install-texinfo /d' \ | |
1000 | -e '/^BISON = /,/^$$/d' \ | |
1001 | -e '/^# BISON:/s/.*/BISON = bison -y/' \ | |
1002 | <Makefile.in >proto-toplev/Makefile.in | |
1003 | ||
1004 | mkdir proto-toplev/texinfo | |
1005 | ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/ | |
1006 | ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/ | |
1007 | ln -s ../../texinfo/tex3patch proto-toplev/texinfo/ | |
1008 | chmod og=u `find proto-toplev -print` | |
1009 | (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \ | |
1010 | echo "==> Making gdb-$$VER.tar.gz"; \ | |
1011 | rm -f gdb-$$VER; ln -s proto-toplev gdb-$$VER; \ | |
1012 | tar cfh - gdb-$$VER \ | |
1013 | | $(GZIP) -v -9 >gdb-$$VER.tar.gz) | |
1014 | ||
1015 | # Make the testsuite archive separately. | |
1016 | ln -s ../../gdb/proto-testsuite.dir/testsuite proto-toplev/gdb/testsuite | |
1017 | # Blow away the Chill test that requires a Chill compiled executable, | |
1018 | # since GNU Chill is not yet publically available. | |
1019 | rm -rf proto-toplev/gdb/testsuite/gdb.t31 | |
1020 | ||
1021 | # Put a copy of COPYING in the tar file. | |
1022 | ln proto-toplev/gdb/COPYING proto-toplev/gdb/testsuite/COPYING | |
1023 | chmod og=u `find proto-toplev/gdb/testsuite -print` | |
1024 | (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \ | |
1025 | echo "==> Making gdb-$$VER-testsuite.tar.gz"; \ | |
1026 | tar cfh - gdb-$$VER/configure gdb-$$VER/config.guess \ | |
1027 | gdb-$$VER/config.sub gdb-$$VER/move-if-change \ | |
1028 | gdb-$$VER/gdb/testsuite \ | |
1029 | | $(GZIP) -v -9 >gdb-$$VER-testsuite.tar.gz) | |
1030 | ||
1031 | # When you use `make setup-dirs' or `make taz' you should always redefine | |
1032 | # this macro. | |
1033 | SUPPORT_FILES = list-of-support-files-for-tool-in-question | |
1034 | # Directories that might want `make diststuff' run. | |
1035 | DISTSTUFFDIRS= ld gprof gdb libg++ | |
1036 | ||
1037 | .PHONY: taz | |
1038 | ||
1039 | taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex texinfo/gpl.texinfo | |
1040 | ./configure sun4 | |
1041 | # Make links, and run "make diststuff" when needed. | |
1042 | # The `echo' for setting `p' is to convert all whitespace to spaces. | |
1043 | # Then the `case' further below should tell whether $$d is in | |
1044 | # DISTSTUFFDIRS. | |
1045 | rm -rf proto-toplev ; mkdir proto-toplev | |
1046 | set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \ | |
1047 | p=" `echo $(DISTSTUFFDIRS)` " ; \ | |
1048 | for d in $$dirs ; do \ | |
1049 | if [ -d $$d ]; then \ | |
1050 | case " $$p " in \ | |
1051 | *" $$d "*) \ | |
1052 | echo making diststuff in $$d ; \ | |
1053 | (cd $$d ; $(MAKE) diststuff) || exit 1 ;; \ | |
1054 | esac ; \ | |
1055 | if [ -d $$d/proto-$$d.dir ]; then \ | |
1056 | ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \ | |
1057 | else \ | |
1058 | ln -s ../$$d proto-toplev/$$d ; \ | |
1059 | fi ; \ | |
1060 | else ln -s ../$$d proto-toplev/$$d ; fi ; \ | |
1061 | done | |
1062 | $(MAKE) distclean | |
1063 | # | |
1064 | mkdir proto-toplev/etc | |
1065 | (cd proto-toplev/etc; for i in $(ETC_SUPPORT); do \ | |
1066 | ln -s ../../etc/$$i . ; \ | |
1067 | done) | |
1068 | # | |
1069 | # Take out texinfo and glob from configurable dirs | |
1070 | rm proto-toplev/configure.in | |
1071 | sed -e '/^host_tools=/s/texinfo //' \ | |
1072 | -e '/^host_libs=/s/glob //' \ | |
1073 | <configure.in >proto-toplev/configure.in | |
1074 | # | |
1075 | # Take out texinfo from a few places; make simple BISON=bison line. | |
1076 | rm proto-toplev/Makefile.in | |
1077 | sed -e '/^all\.normal: /s/\all-texinfo //' \ | |
1078 | -e '/^ install-texinfo /d' \ | |
1079 | -e '/^BISON = /,/^$$/d' \ | |
1080 | -e '/^# BISON:/s/.*/BISON = bison -y/' \ | |
1081 | <Makefile.in >proto-toplev/Makefile.in | |
1082 | # | |
1083 | mkdir proto-toplev/texinfo | |
1084 | ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/ | |
1085 | ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/ | |
1086 | ln -s ../../texinfo/tex3patch proto-toplev/texinfo/ | |
1087 | chmod og=u `find . -print` | |
1088 | (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \ | |
1089 | echo "==> Making $(TOOL)-$$VER.tar.gz"; \ | |
1090 | rm -f $(TOOL)-$$VER; ln -s proto-toplev $(TOOL)-$$VER; \ | |
1091 | tar cfh - $(TOOL)-$$VER \ | |
1092 | | $(GZIP) -v -9 >$(TOOL)-$$VER.tar.gz) | |
1093 | ||
1094 | TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo | |
1095 | DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT) | |
1096 | ||
1097 | .PHONY: gas.tar.gz | |
1098 | GAS_SUPPORT_DIRS= bfd include libiberty opcodes | |
1099 | gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas | |
1100 | $(MAKE) -f Makefile.in taz SUPPORT_FILES="$(GAS_SUPPORT_DIRS)" TOOL=gas | |
1101 | ||
1102 | # The FSF "binutils" release includes gprof and ld. | |
1103 | .PHONY: binutils.tar.gz | |
1104 | BINUTILS_SUPPORT_DIRS= bfd include libiberty opcodes ld gprof | |
1105 | binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils | |
1106 | $(MAKE) -f Makefile.in taz SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS)" TOOL=binutils | |
1107 | ||
1108 | .PHONY: gas+binutils.tar.gz | |
1109 | GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof | |
1110 | gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas | |
1111 | $(MAKE) -f Makefile.in taz SUPPORT_FILES="$(GASB_SUPPORT_DIRS)" TOOL=gas | |
1112 | ||
1113 | .PHONY: libg++.tar.gz | |
1114 | LIBGXX_SUPPORT_DIRS=include libiberty xiberty | |
1115 | libg++.tar.gz: $(DIST_SUPPORT) libg++ | |
1116 | $(MAKE) -f Makefile.in taz SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)" TOOL=libg++ | |
1117 | ||
1118 | .NOEXPORT: | |
1119 | MAKEOVERRIDES= | |
1120 | ||
1121 | # start-sanitize-chill | |
1122 | ## This is ugly, but I don't want GNU make to put these variables in | |
1123 | ## the environment. Older makes will see this as a set of targets | |
1124 | ## with no dependencies and no actions. | |
1125 | unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET : | |
1126 | # end-sanitize-chill | |
1127 | ||
1128 | # end of Makefile.in |