* dbxread.c (read_type): Handle error case slightly better.
[platform/upstream/binutils.git] / Makefile.in
1 #
2 # Makefile for directory with subdirs to build.
3 #   Copyright (C) 1990, 1991 Cygnus Support
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 # Last Mod Wed Oct 2 00:21:53 PDT 1991, by rich@cygnus.com
20 #
21 # $Id$
22
23 srcdir = .
24 destdir = /usr/local
25
26 SHELL=/bin/sh
27
28 #CC = gcc -b$(target) # -B$(srcdir)/../gas/Host-$(host)/Target-$(target)/
29 #CFLAGS = -g -nostdinc -nostdlib -I- -I/usr/local/lib/gcc/$(target)/1.92/include -I$(srcdir) -I$(srcdir)/../include -I$(OSINCLUDE)
30
31 RANLIB = ranlib
32 AR = ar
33 AR_FLAGS = cq
34 BISONPATH = 
35
36 BISON = `if [ -d $(srcdir)/../bison\`if [ -d $(srcdir)/bison.$(target) ] ; then echo .$(target) ; fi\`$(subdir) ] ; then echo $(srcdir)/../bison\`if [ -d $(srcdir)/bison.$(target) ] ; then echo .$(target) ; fi\`$(subdir)/bison -L $(srcdir)/../bison\`if [ -d $(srcdir)/bison.$(target) ] ; then echo .$(target) ; fi\`/; else echo yacc ; fi`
37
38 SUBDIRS = libiberty readline bfd gdb binutils ld gas gcc gnulib
39 OTHERS = 
40
41 #### host and target specific makefile fragments come in here.
42 ###
43
44 all:
45         $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS) $(OTHERS)"
46
47 subdir_do: force
48         for i in $(DODIRS); do \
49                 if [ -d $(srcdir)/$$i -o -d $(srcdir)/$$i.$(target) ] ; then \
50                         if (cd $(srcdir)/$$i`if [ -d $(srcdir)/$$i.$(target) ] ; \
51                                 then echo .$(target) ; fi`$(subdir); \
52                                 $(MAKE) \
53                                         "against=$(against)" \
54                                         "AR=$(AR)" \
55                                         "CC=$(CC)" \
56                                         "AR_FLAGS=$(AR_FLAGS)" \
57                                         "RANLIB=$(RANLIB)" \
58                                         "LOADLIBES=$(LOADLIBES)" \
59                                         "LDFLAGS=$(LDFLAGS)" \
60                                         "BISON=$(BISON)" $(DO)) ; then true ; \
61                         else exit 1 ; fi ; \
62                 else true ; fi ; \
63         done
64
65 bootstrap:
66         $(MAKE) all
67         $(MAKE) stage1
68         $(MAKE) pass "stagepass=stage1"
69         $(MAKE) stage2
70         $(MAKE) pass "stagepass=stage2"
71         $(MAKE) comparison
72
73 bootstrap2:
74         $(MAKE) pass "stagepass=stage1"
75         $(MAKE) stage2
76         $(MAKE) pass "stagepass=stage2"
77         $(MAKE) comparison
78
79 bootstrap3:
80         $(MAKE) pass "stagepass=stage2"
81         $(MAKE) comparison
82
83 pass:
84         cp $(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
85                 then echo .$(target) ; fi`/gstdarg.h $(srcdir)/gas/stdarg.h
86         $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" \
87                 "CC=`pwd`/$(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
88                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/gcc \
89                 -O \
90                 -B`pwd`/$(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
91                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ \
92                 -B`pwd`/$(srcdir)/gas`if [ -d $(srcdir)/gas.$(target) ] ; \
93                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ \
94                 -B`pwd`/$(srcdir)/ld`if [ -d $(srcdir)/ld.$(target) ] ; \
95                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/" \
96                 "AR=`pwd`/$(srcdir)/binutils`if [ -d $(srcdir)/binutils.$(target) ] ; \
97                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ar" \
98                 "RANLIB=`pwd`/$(srcdir)/binutils`if [ -d $(srcdir)/binutils.$(target) ] ; \
99                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ranlib" \
100                 "LOADLIBES=`pwd`/$(srcdir)/gnulib`if [ -d $(srcdir)/binutils.$(target) ] ; \
101                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/gnulib.a /lib/libc.a" \
102                 "LDFLAGS=-nostdlib /lib/crt0.o \
103                 -L`pwd`/$(srcdir)/gnulib`if [ -d $(srcdir)/gnulib.$(target) ] ; \
104                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ \
105                 -B`pwd`/$(srcdir)/ld`if [ -d $(srcdir)/ld.$(target) ] ; \
106                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/"
107
108
109 stage1:
110         $(MAKE) subdir_do DO=stage1 "DODIRS=$(SUBDIRS)"
111
112 stage2:
113         $(MAKE) subdir_do DO=stage2 "DODIRS=$(SUBDIRS)"
114
115 stage3:
116         $(MAKE) subdir_do DO=stage3 "DODIRS=$(SUBDIRS)"
117
118 stage4:
119         $(MAKE) subdir_do DO=stage4 "DODIRS=$(SUBDIRS)"
120
121 against=stage2
122
123 comparison:; $(MAKE) subdir_do DO=comparison against=$(against) "DODIRS=$(SUBDIRS)"
124
125 de-stage1:; $(MAKE) subdir_do DO=de-stage1 "DODIRS=$(SUBDIRS)"
126 de-stage2:; $(MAKE) subdir_do DO=de-stage2 "DODIRS=$(SUBDIRS)"
127 de-stage3:; $(MAKE) subdir_do DO=de-stage3 "DODIRS=$(SUBDIRS)"
128 de-stage4:; $(MAKE) subdir_do DO=de-stage4 "DODIRS=$(SUBDIRS)"
129
130 clean:
131         rm -rf *.a TEMP errs core *.o *~ \#* TAGS *.E
132         $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS) $(OTHERS)"
133
134 install: install-dirs install-fixed-includes
135         $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS) $(OTHERS)"
136
137 # The "else true" stuff is for Ultrix; the shell returns the exit code
138 # of the "if" command, if no commands are run in the "then" or "else" part,
139 # causing Make to quit.
140 install-dirs: force
141         - mkdir $(destdir)
142         - mkdir $(destdir)/bin
143         - mkdir $(destdir)/lib
144         - mkdir $(destdir)/include
145         - mkdir $(destdir)/doc
146         - mkdir $(destdir)/man
147         - mkdir $(destdir)/man/man1
148         - mkdir $(destdir)/man/man2
149         - mkdir $(destdir)/man/man3
150         - mkdir $(destdir)/man/man4
151         - mkdir $(destdir)/man/man5
152         - mkdir $(destdir)/man/man6
153         - mkdir $(destdir)/man/man7
154         - mkdir $(destdir)/man/man8
155         if [ -d $(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
156                 then echo .$(target) ; fi`$(subdir) ] ; then \
157                 (cd  $(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
158                         then echo .$(target) ; fi`$(subdir) ; \
159                                 $(MAKE) install-dir) ; \
160         else true; \
161         fi
162
163 install-fixed-includes: force
164         if [ -d $(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
165                 then echo .$(target) ; fi`$(subdir) ] ; then \
166                 (cd  $(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
167                         then echo .$(target) ; fi`$(subdir) ; \
168                                 $(MAKE) install-fixed-includes) ; \
169         else true; \
170         fi
171
172 etags tags: TAGS
173
174 TAGS: FORCE
175         etags `$(MAKE) ls`
176
177 ls:
178         @echo Makefile
179         @for i in $(SUBDIRS); \
180         do \
181                 (cd $$i; \
182                         pwd=`pwd`; \
183                         wd=`basename $$pwd`; \
184                         for j in `$(MAKE) ls`; \
185                         do \
186                                 echo $$wd/$$j; \
187                         done) \
188         done
189
190 force:
191
192 # with the gnu make, this is done automatically.
193
194 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
195         $(SHELL) ./config.status
196
197 #
198 # Build GDB distributions that contain BFD, Include, Libiberty, Readline, etc
199
200 DEVO_SUPPORT= README README.configure Makefile.in configure configure.in \
201         config.sub config
202 GDB_SUPPORT_DIRS= bfd include libiberty readline
203 GDB_SUPPORT_FILES= $(GDB_SUPPORT_DIRS) texinfo/fsf/texinfo.tex
204
205 setup-dirs: force_update
206         ./configure -template=./configure
207         ./configure sun4
208         make clean
209         ./configure -rm sun4
210         chmod og=u `find $(DEVO_SUPPORT) $(GDB_SUPPORT_FILES) -print`
211
212 bfd.ilrt.tar.Z: setup-dirs
213         rm -f bfd.ilrt.tar.Z
214         tar cf - $(DEVO_SUPPORT) $(GDB_SUPPORT_FILES) \
215                 | compress -v >bfd.ilrt.tar.Z
216
217 gdb.tar.Z: setup-dirs
218         (cd gdb; $(MAKE) -f Makefile.in make-proto-gdb.dir)
219         $(MAKE) $(MFLAGS) -f Makefile.in make-gdb.tar.Z
220
221 make-gdb.tar.Z: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/fsf/texinfo.tex
222         rm -rf proto-toplev; mkdir proto-toplev
223         ln -s ../gdb/proto-gdb.dir proto-toplev/gdb
224         (cd proto-toplev; for i in $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS); do \
225                 ln -s ../$$i . ; \
226         done)
227         mkdir proto-toplev/texinfo
228         mkdir proto-toplev/texinfo/fsf
229         ln -s ../../../texinfo/fsf/texinfo.tex proto-toplev/texinfo/fsf/
230         chmod og=u `find proto-toplev -print`
231         (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \
232                 echo "==> Making gdb-$$VER.tar.Z"; \
233                 ln -s proto-toplev gdb-$$VER; \
234                 tar cfh - gdb-$$VER \
235                 | compress -v >gdb-$$VER.tar.Z)
236
237 force_update:
238
239 #
240 # $Log$
241 # Revision 1.38  1991/10/02 07:21:55  rich
242 # no more configure on which to depend
243 #
244 # Revision 1.37  1991/10/01  13:41:00  gnu
245 # Avoid 'v' flag on archive updates, since it just wastes space in the log.
246 #
247 # Revision 1.36  1991/10/01  03:45:39  rich
248 # Exploit the new executable config.status
249 #
250 # Revision 1.35  1991/09/25  04:34:40  rich
251 # Pass command names with absolute paths.  Easier than keeping relative
252 # paths right when dealing with sub/sub/directories.
253 #
254 # Revision 1.34  1991/09/20  09:08:56  gnu
255 # Set file permissions on all files when building a distribution.
256 #
257 # Revision 1.33  1991/09/20  08:41:45  gnu
258 # New rules for building distributions.  Normal distribution
259 # is built by doing `make -f Makefile.in gdb.tar.Z' in the devo dir.
260 #
261 # Revision 1.32  1991/09/19  20:56:05  steve
262 # More changes for 68k and 386 coff support. (Sorry about the previous
263 # log).
264 #
265 # Revision 1.31  1991/09/03  13:28:38  gnu
266 # Add "else true" clauses for really dumb sh's such as Ultrix.
267 #
268 # Revision 1.30  1991/08/26  06:37:57  rich
269 # Correcting configurations and installs.
270 #
271 # Revision 1.29  1991/08/26  04:45:57  rich
272 # Correcting install target when gcc not present.
273 #
274 # Revision 1.28  1991/08/25  23:40:22  rich
275 # rcs enters the soup.
276 #
277 # Revision 1.27  1991/08/23  07:15:56  gnu
278 # Make README stick...
279 #
280 # Revision 1.26  1991/08/22  09:20:07  gnu
281 # Build a top-level README for devo.
282 #
283 # Revision 1.25  1991/08/22  07:15:49  rich
284 # Three part names, etc.
285 #
286 # Revision 1.24  1991/08/20  01:57:31  rich
287 # Another try at passing gnulib's location.
288 #
289 # Revision 1.23  1991/08/16  21:47:41  rich
290 # Pass on BISON as bison only if bison is here.
291 #
292 # Revision 1.22  1991/08/07  19:15:26  rich
293 # +forcesubdirs -> +subdirs
294 #
295 # Revision 1.21  1991/07/31  18:07:59  gnu
296 # Set file permissions the same for everyone before making tar file.
297 #
298 # Revision 1.20  1991/07/31  02:47:14  gnu
299 # Add bfd.ilrt.tar.Z "make" rules.
300 #
301 # Revision 1.19  1991/07/27  07:46:34  rich
302 # Changes to accomodate using the freshly built bison in place.
303 #
304 # Revision 1.18  1991/07/16  00:01:40  gnu
305 # Add back gdb and readline.
306 #
307 # Revision 1.17  1991/06/18  15:30:55  rich
308 # added install-dirs target.
309 #
310 # Revision 1.16  1991/06/14  13:35:40  rich
311 # install fixed include files on install.
312 #
313 # Revision 1.15  1991/06/09  20:27:01  rich
314 # added support for binary comparisons.
315 #
316 # Revision 1.14  1991/05/31  12:34:55  gnu
317 # Avoid error stop from Make if a directory doesn't exist during subdir_do.
318 #
319 # Revision 1.13  1991/05/27  23:03:20  rich
320 # Put gcc/gstdarg.h where gas can find it; gas/stdarg.h.
321 #
322 # Revision 1.12  1991/05/19  00:36:44  rich
323 # Added gdb.
324 #
325 # Revision 1.11  1991/05/03  21:30:41  gnu
326 # Rename getopt to libiberty.
327 #
328 # Revision 1.10  1991/04/24  16:50:53  rich
329 # Three staging checkpoint.
330 #
331 # Revision 1.9  1991/04/17  01:34:36  rich
332 # Added getopt for binutils, fixed problem with host dependancies in
333 # configure.template.
334 #
335 # Revision 1.8  1991/04/15  23:43:45  rich
336 # Now handles multiple hosts and targets.
337 #
338 # Revision 1.7  1991/04/13  13:06:16  tiemann
339 # Don't depend `install' on `all'.  Actually, the way things work, all
340 # depends on things being incrementally installed, and install depends
341 # on everything happening in a topological fashion.
342 #
343 # This will need to be worked on further, but for now it's ok.
344 #
345 # Revision 1.6  1991/04/13  10:04:14  rich
346 # Now can build gas for a29k on a29k.
347 #
348 # Revision 1.5  1991/04/13  07:40:41  rich
349 # Fixed an ordering bug.  Now everything is built, and then installed.
350 #
351 # Revision 1.4  1991/04/13  02:11:09  rich
352 # Config cut 3.  We now almost install a29k.
353 #
354 # Revision 1.3  1991/04/11  02:41:53  rich
355 # Cut 2 config.  Subdirs.
356 #
357 #
358 #
359
360 # end of Makefile.in