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