get bison library path right
[deliverable/binutils-gdb.git] / Makefile.in
CommitLineData
eb02fd64 1#
131a3881 2# Makefile for directory with subdirs to build.
4dfe09da 3# Copyright (C) 1990, 1991 Cygnus Support
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
17# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
18#
137c0ccf 19# Last Mod Tue Nov 5 21:17:56 PST 1991, by rich@rtl.cygnus.com
eb02fd64 20#
f149eb99
RP
21# $Id$
22
eb02fd64 23srcdir = .
28f3b094
RP
24
25idestdir = /usr/local
26ddestdir = $(idestdir)
eb02fd64 27
3c8735af
RP
28SHELL=/bin/sh
29
eb02fd64 30RANLIB = ranlib
ec342d7d 31AR = ar
090811c1 32AR_FLAGS = cq
eb02fd64 33
2bc9434c 34BISON = `if [ -d $(unsubdir)/../bison ] ; \
137c0ccf 35 then echo \`pwd\`/$(unsubdir)/../bison$(subdir)/bison -L $(srcdir)/bison/ ; \
2bc9434c 36 else echo yacc ; fi`
2645fb0c 37
9488cc4d 38SUBDIRS = libiberty readline bfd gdb binutils ld gas gcc gnulib clib
6a3958b2
RP
39OTHERS =
40
a0f47eb7
SC
41ALL = all.normal
42
eb02fd64 43#### host and target specific makefile fragments come in here.
ec342d7d 44###
eb02fd64 45
a0f47eb7
SC
46all: $(ALL)
47
48all.normal:
3c81fef5 49 $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS) $(OTHERS)"
6a3958b2 50
a0f47eb7
SC
51# this is a bad hack.
52all.xclib: all.normal
53 if [ -d clib ] ; then \
54 (cd clib ; $(MAKE)) ; \
55 fi
56
3c81fef5 57subdir_do: force
a01bf1fb 58 for i in $(DODIRS); do \
a0f47eb7
SC
59 if [ -f $(unsubdir)/$$i/localenv -o -f $(unsubdir)/$$i.$(target)/localenv ] ; then \
60 if (cd $(unsubdir)/$$i`if [ -d $(unsubdir)/$$i.$(target) ] ; \
61 then echo .$(target) ; fi`$(subdir); \
62 $(MAKE) \
63 "against=$(against)" \
64 "BISON=$(BISON)" $(DO)) ; then true ; \
65 else exit 1 ; fi ; \
66 else if [ -d $(unsubdir)/$$i -o -d $(unsubdir)/$$i.$(target) ] ; then \
2bc9434c 67 if (cd $(unsubdir)/$$i`if [ -d $(unsubdir)/$$i.$(target) ] ; \
a01bf1fb
RP
68 then echo .$(target) ; fi`$(subdir); \
69 $(MAKE) \
70 "against=$(against)" \
71 "AR=$(AR)" \
abc52b80 72 "CC=$(CC)" \
a01bf1fb 73 "AR_FLAGS=$(AR_FLAGS)" \
2645fb0c 74 "RANLIB=$(RANLIB)" \
905bb120
RP
75 "LOADLIBES=$(LOADLIBES)" \
76 "LDFLAGS=$(LDFLAGS)" \
2645fb0c 77 "BISON=$(BISON)" $(DO)) ; then true ; \
a01bf1fb
RP
78 else exit 1 ; fi ; \
79 else true ; fi ; \
a0f47eb7 80 fi ; \
a01bf1fb 81 done
eb02fd64 82
a0f47eb7
SC
83
84
2b34da49
RP
85bootstrap:
86 $(MAKE) all
87 $(MAKE) stage1
6a3958b2
RP
88 $(MAKE) pass "stagepass=stage1"
89 $(MAKE) stage2
90 $(MAKE) pass "stagepass=stage2"
a01bf1fb 91 $(MAKE) comparison
6a3958b2
RP
92
93bootstrap2:
94 $(MAKE) pass "stagepass=stage1"
95 $(MAKE) stage2
96 $(MAKE) pass "stagepass=stage2"
a01bf1fb 97 $(MAKE) comparison
6a3958b2
RP
98
99bootstrap3:
100 $(MAKE) pass "stagepass=stage2"
a01bf1fb 101 $(MAKE) comparison
6a3958b2
RP
102
103pass:
517d18b2 104 cp $(srcdir)/gcc/gstdarg.h $(unsubdir)/gas$(subdir)/stdarg.h
3c81fef5 105 $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" \
2bc9434c 106 "CC=`pwd`/$(unsubdir)/gcc`if [ -d $(unsubdir)/gcc.$(target) ] ; \
905bb120
RP
107 then echo .$(target) ; fi`$(subdir)/$(stagepass)/gcc \
108 -O \
2bc9434c 109 -B`pwd`/$(unsubdir)/gcc`if [ -d $(unsubdir)/gcc.$(target) ] ; \
6a3958b2 110 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ \
2bc9434c 111 -B`pwd`/$(unsubdir)/gas`if [ -d $(unsubdir)/gas.$(target) ] ; \
905bb120 112 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ \
2bc9434c 113 -B`pwd`/$(unsubdir)/ld`if [ -d $(unsubdir)/ld.$(target) ] ; \
6a3958b2 114 then echo .$(target) ; fi`$(subdir)/$(stagepass)/" \
2bc9434c 115 "AR=`pwd`/$(unsubdir)/binutils`if [ -d $(unsubdir)/binutils.$(target) ] ; \
6a3958b2 116 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ar" \
2bc9434c 117 "RANLIB=`pwd`/$(unsubdir)/binutils`if [ -d $(unsubdir)/binutils.$(target) ] ; \
6a3958b2 118 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ranlib" \
2bc9434c 119 "LOADLIBES=`pwd`/$(unsubdir)/gnulib`if [ -d $(unsubdir)/binutils.$(target) ] ; \
6a3958b2
RP
120 then echo .$(target) ; fi`$(subdir)/$(stagepass)/gnulib.a /lib/libc.a" \
121 "LDFLAGS=-nostdlib /lib/crt0.o \
2bc9434c 122 -L`pwd`/$(unsubdir)/gnulib`if [ -d $(unsubdir)/gnulib.$(target) ] ; \
4dfe09da 123 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ \
2bc9434c 124 -B`pwd`/$(unsubdir)/ld`if [ -d $(unsubdir)/ld.$(target) ] ; \
6a3958b2 125 then echo .$(target) ; fi`$(subdir)/$(stagepass)/"
2b34da49 126
eb02fd64 127
6a3958b2 128stage1:
3c81fef5 129 $(MAKE) subdir_do DO=stage1 "DODIRS=$(SUBDIRS)"
eb02fd64 130
6a3958b2 131stage2:
3c81fef5 132 $(MAKE) subdir_do DO=stage2 "DODIRS=$(SUBDIRS)"
eb02fd64 133
6a3958b2 134stage3:
3c81fef5 135 $(MAKE) subdir_do DO=stage3 "DODIRS=$(SUBDIRS)"
eb02fd64 136
6a3958b2 137stage4:
3c81fef5 138 $(MAKE) subdir_do DO=stage4 "DODIRS=$(SUBDIRS)"
eb02fd64 139
a01bf1fb
RP
140against=stage2
141
142comparison:; $(MAKE) subdir_do DO=comparison against=$(against) "DODIRS=$(SUBDIRS)"
143
3c81fef5
RP
144de-stage1:; $(MAKE) subdir_do DO=de-stage1 "DODIRS=$(SUBDIRS)"
145de-stage2:; $(MAKE) subdir_do DO=de-stage2 "DODIRS=$(SUBDIRS)"
146de-stage3:; $(MAKE) subdir_do DO=de-stage3 "DODIRS=$(SUBDIRS)"
147de-stage4:; $(MAKE) subdir_do DO=de-stage4 "DODIRS=$(SUBDIRS)"
6a3958b2
RP
148
149clean:
150 rm -rf *.a TEMP errs core *.o *~ \#* TAGS *.E
3c81fef5 151 $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS) $(OTHERS)"
6a3958b2 152
2645fb0c 153install: install-dirs install-fixed-includes
3c81fef5 154 $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS) $(OTHERS)"
eb02fd64 155
abc52b80
JG
156# The "else true" stuff is for Ultrix; the shell returns the exit code
157# of the "if" command, if no commands are run in the "then" or "else" part,
158# causing Make to quit.
2645fb0c 159install-dirs: force
28f3b094
RP
160 - mkdir $(ddestdir)
161 - mkdir $(ddestdir)/include
162 - mkdir $(ddestdir)/lib
163 - mkdir $(ddestdir)/lib/emacs
164 - mkdir $(ddestdir)/bin
165 - mkdir $(ddestdir)/lib
166 - mkdir $(ddestdir)
167 - mkdir $(ddestdir)/bin
168 - mkdir $(ddestdir)/lib
169 - mkdir $(idestdir)
170 - mkdir $(idestdir)include
171 - mkdir $(idestdir)/doc
172 - mkdir $(idestdir)/man
173 - mkdir $(idestdir)/man/man1
174 - mkdir $(idestdir)/man/man2
175 - mkdir $(idestdir)/man/man3
176 - mkdir $(idestdir)/man/man4
177 - mkdir $(idestdir)/man/man5
178 - mkdir $(idestdir)/man/man6
179 - mkdir $(idestdir)/man/man7
180 - mkdir $(idestdir)/man/man8
2bc9434c 181 if [ -d $(unsubdir)/gcc`if [ -d $(unsubdir)/gcc.$(target) ] ; \
5710dc37 182 then echo .$(target) ; fi`$(subdir) ] ; then \
2bc9434c 183 (cd $(unsubdir)/gcc`if [ -d $(unsubdir)/gcc.$(target) ] ; \
5710dc37
RP
184 then echo .$(target) ; fi`$(subdir) ; \
185 $(MAKE) install-dir) ; \
abc52b80 186 else true; \
5710dc37 187 fi
2645fb0c
RP
188
189install-fixed-includes: force
2bc9434c 190 if [ -d $(unsubdir)/gcc`if [ -d $(unsubdir)/gcc.$(target) ] ; \
5710dc37 191 then echo .$(target) ; fi`$(subdir) ] ; then \
2bc9434c 192 (cd $(unsubdir)/gcc`if [ -d $(unsubdir)/gcc.$(target) ] ; \
5710dc37
RP
193 then echo .$(target) ; fi`$(subdir) ; \
194 $(MAKE) install-fixed-includes) ; \
abc52b80 195 else true; \
5710dc37 196 fi
a7058e26 197
eb02fd64
RP
198etags tags: TAGS
199
200TAGS: FORCE
201 etags `$(MAKE) ls`
202
203ls:
204 @echo Makefile
205 @for i in $(SUBDIRS); \
206 do \
207 (cd $$i; \
208 pwd=`pwd`; \
209 wd=`basename $$pwd`; \
210 for j in `$(MAKE) ls`; \
211 do \
212 echo $$wd/$$j; \
213 done) \
214 done
215
3c81fef5 216force:
eb02fd64
RP
217
218# with the gnu make, this is done automatically.
219
f1eb48b6 220Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
a26878d1 221 $(SHELL) ./config.status
eb02fd64 222
11954bf1
JG
223#
224# Build GDB distributions that contain BFD, Include, Libiberty, Readline, etc
225
3c8735af 226DEVO_SUPPORT= README README.configure Makefile.in configure configure.in \
abc52b80
JG
227 config.sub config
228GDB_SUPPORT_DIRS= bfd include libiberty readline
229GDB_SUPPORT_FILES= $(GDB_SUPPORT_DIRS) texinfo/fsf/texinfo.tex
11954bf1 230
abc52b80 231setup-dirs: force_update
11954bf1
JG
232 ./configure sun4
233 make clean
234 ./configure -rm sun4
905bb120 235 chmod og=u `find $(DEVO_SUPPORT) $(GDB_SUPPORT_FILES) -print`
abc52b80
JG
236
237bfd.ilrt.tar.Z: setup-dirs
11954bf1 238 rm -f bfd.ilrt.tar.Z
abc52b80 239 tar cf - $(DEVO_SUPPORT) $(GDB_SUPPORT_FILES) \
11954bf1
JG
240 | compress -v >bfd.ilrt.tar.Z
241
abc52b80
JG
242gdb.tar.Z: setup-dirs
243 (cd gdb; $(MAKE) -f Makefile.in make-proto-gdb.dir)
244 $(MAKE) $(MFLAGS) -f Makefile.in make-gdb.tar.Z
245
246make-gdb.tar.Z: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/fsf/texinfo.tex
247 rm -rf proto-toplev; mkdir proto-toplev
248 ln -s ../gdb/proto-gdb.dir proto-toplev/gdb
249 (cd proto-toplev; for i in $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS); do \
250 ln -s ../$$i . ; \
251 done)
252 mkdir proto-toplev/texinfo
253 mkdir proto-toplev/texinfo/fsf
254 ln -s ../../../texinfo/fsf/texinfo.tex proto-toplev/texinfo/fsf/
905bb120 255 chmod og=u `find proto-toplev -print`
abc52b80
JG
256 (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \
257 echo "==> Making gdb-$$VER.tar.Z"; \
258 ln -s proto-toplev gdb-$$VER; \
259 tar cfh - gdb-$$VER \
260 | compress -v >gdb-$$VER.tar.Z)
261
11954bf1
JG
262force_update:
263
eb02fd64 264# end of Makefile.in
This page took 0.045118 seconds and 4 git commands to generate.