* Makefile.in: added coff-h8300
[deliverable/binutils-gdb.git] / bfd / Makefile.in
CommitLineData
3c8a3c56 1# Makefile template for Configure for the BFD library.
a26878d1 2# Copyright (C) 1990, 1991 Free Software Foundation, Inc.
3c8a3c56
JG
3# Written by Cygnus Support.
4#
5# This file is part of BFD, the Binary File Descriptor library.
6#
7# This program is free software; you can redistribute it and/or modify
99a42820 8# it under the terms of the GNU General Public License as published by
3c8a3c56
JG
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
99a42820
RP
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
3c8a3c56 16#
99a42820 17# You should have received a copy of the GNU General Public License
3c8a3c56
JG
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
99a42820
RP
20
21# $Id$
22
23srcdir = .
080f6324
SC
24ddestdir = /usr/local
25libdir = $(ddestdir)/lib
7de245d3 26docdir = $(srcdir)$(subdir)/doc
2bf92e47 27includedir= $(ddestdir)/include
99a42820 28RANLIB = ranlib
1b494bfa
RP
29AR = ar
30AR_FLAGS = clq
d6a554ae 31INCDIR = $(srcdir)/../include
40773f7f 32CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
a5c6b4b3 33DEP = mkdep
080f6324 34MINUS_G=-g
12e7087f 35
f259290f 36SUBDIRS = doc
12e7087f 37
99a42820 38#### host and target dependent Makefile fragments come in here.
99a42820
RP
39###
40
7de245d3
PB
41# Change this (to MINIMIZE=1) to save space in executables.
42# Currently, all this does is control the target_vector in targets.c.
43MINIMIZE=0
44
5176a6bc 45TARGETLIB = libbfd.a
080f6324 46CFLAGS = $(MINUS_G) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) # -DINTEL960VERSION
99a42820
RP
47
48
726cc6ef 49BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
a7bae57e 50 archures.o core.o section.o format.o syms.o reloc.o init.o ctor.o
63ffe5ef 51
cbdc7909
JG
52BFD_MACHINES = cpu-h8300.o cpu-i960.o cpu-sparc.o cpu-m68k.o cpu-m88k.o \
53 cpu-vax.o cpu-mips.o cpu-a29k.o cpu-i386.o cpu-rs6000.o
99a42820 54
7de245d3 55BFD_BACKENDS = oasys.o ieee.o srec.o elf.o stab-syms.o\
b7de6963 56 aout64.o aout32.o demo64.o sunos.o newsos3.o i386aout.o bout.o \
156e3852 57 coff-i960.o coff-a29k.o coff-m68k.o coff-i386.o coff-m88k.o \
3b4f1a5d 58 coff-mips.o coff-rs6000.o coff-h8300.o
63ffe5ef 59
c6e7b0ed 60OPTIONAL_BACKENDS = trad-core.o
99a42820
RP
61
62BFD_H=$(INCDIR)/bfd.h
99a42820
RP
63
64# C source files that correspond to .o's.
65CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c archures.c \
156e3852
JG
66 coff-i386.c aout64.c aout32.c sunos.c demo64.c coff-i960.c srec.c \
67 oasys.c ieee.c coff-m68k.c coff-a29k.c coff-rs6000.c \
7de245d3 68 format.c section.c core.c syms.c stabs-syms.c reloc.c init.c ctor.c \
156e3852 69 coff-m88k.c coff-mips.c trad-core.c newsos3.c i386aout.c bout.c elf.c \
3f85ebce 70 cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c cpu-m88k.c \
3b4f1a5d 71 cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c cpu-rs6000.c coff-h8300.c
63ffe5ef 72
5176a6bc
RP
73STAGESTUFF = $(TARGETLIB) $(OFILES)
74
75all: $(TARGETLIB)
f259290f 76 $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)"
5176a6bc 77
2090ba83
RP
78all-info: force
79 $(MAKE) subdir_do DO=all-info "DODIRS=$(SUBDIRS)"
80
81install-info: force
82 $(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)"
83
6a469027
JG
84# HDEPFILES comes from the host config; TDEPFILES from the target config.
85OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
5176a6bc
RP
86
87$(TARGETLIB): $(OFILES)
88 rm -f $(TARGETLIB)
1b494bfa
RP
89 $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
90 $(RANLIB) $(TARGETLIB)
5176a6bc 91
4a29cb1e
JG
92# When compiling targets.c, supply the default target info from configure.
93targets.o: targets.c
7de245d3 94 $(CC) $(CFLAGS) -c -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
4a29cb1e 95
f259290f
RP
96subdir_do: force
97 for i in $(DODIRS); do \
98 if [ -d $(unsubdir)/$$i ] ; then \
99 if (cd $(unsubdir)/$$i$(subdir); \
100 $(MAKE) \
101 "against=$(against)" \
102 "AR=$(AR)" \
103 "CC=$(CC)" \
104 "AR_FLAGS=$(AR_FLAGS)" \
105 "RANLIB=$(RANLIB)" \
106 "BISON=$(BISON)" $(DO)) ; then true ; \
107 else exit 1 ; fi ; \
108 else true ; fi ; \
109 done
110
5176a6bc
RP
111stage1: force
112 - mkdir stage1
113 - mv -f $(STAGESTUFF) stage1
f259290f 114 $(MAKE) subdir_do DO=stage1 "DODIRS=$(SUBDIRS)"
5176a6bc
RP
115
116stage2: force
117 - mkdir stage2
118 - mv -f $(STAGESTUFF) stage2
f259290f 119 $(MAKE) subdir_do DO=stage2 "DODIRS=$(SUBDIRS)"
5176a6bc
RP
120
121stage3: force
122 - mkdir stage3
123 - mv -f $(STAGESTUFF) stage3
f259290f 124 $(MAKE) subdir_do DO=stage3 "DODIRS=$(SUBDIRS)"
5176a6bc 125
a01bf1fb
RP
126against=stage2
127
128comparison: force
129 for i in *.o ; do cmp $$i $(against)/$$i || exit 1 ; done
f259290f 130 $(MAKE) subdir_do DO=comparison "DODIRS=$(SUBDIRS)"
a01bf1fb 131
5176a6bc
RP
132de-stage1: force
133 - (cd stage1 ; mv -f $(STAGESTUFF) ..)
134 - rmdir stage1
f259290f 135 $(MAKE) subdir_do DO=de-stage1 "DODIRS=$(SUBDIRS)"
99a42820 136
5176a6bc
RP
137de-stage2: force
138 - (cd stage2 ; mv -f $(STAGESTUFF) ..)
139 - rmdir stage2
f259290f 140 $(MAKE) subdir_do DO=de-stage2 "DODIRS=$(SUBDIRS)"
99a42820 141
5176a6bc
RP
142de-stage3: force
143 - (cd stage3 ; mv -f $(STAGESTUFF) ..)
144 - rmdir stage3
f259290f 145 $(MAKE) subdir_do DO=de-stage3 "DODIRS=$(SUBDIRS)"
99a42820
RP
146
147tags etags: TAGS
148
5176a6bc 149TAGS: force
453063fe 150 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
99a42820
RP
151
152clean:
3a26c0cd 153 rm -f *.[oa] *~ core *.E *.p *.ip
f259290f 154 $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)"
99a42820
RP
155
156clobber realclean: clean
157 rm -f libbfd.a TAGS
f259290f 158 $(MAKE) subdir_do DO=clobber "DODIRS=$(SUBDIRS)"
99a42820 159
23d44ec9
JG
160# Mark everything as depending on config.status, since the timestamp on
161# sysdep.h might actually move backwards if we reconfig and relink it
162# to a different hosts/h-xxx.h file. This will force a recompile anyway.
163RECONFIG = config.status
164$(BFD_LIBS): libbfd.h $(BFD_H) $(RECONFIG)
165$(BFD_MACHINES): libbfd.h $(BFD_H) $(RECONFIG)
166$(BFD_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
167$(OPTIONAL_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
99a42820 168
cbdc7909
JG
169# Get around a Sun Make bug in SunOS 4.1.1 with VPATH
170cpu-i386.o:cpu-i386.c
171
99a42820
RP
172saber:
173 #suppress 65 on bfd_map_over_sections
174 #suppress 66 on bfd_map_over_sections
175 #suppress 67 on bfd_map_over_sections
176 #suppress 68 on bfd_map_over_sections
177 #suppress 69 on bfd_map_over_sections
178 #suppress 70 on bfd_map_over_sections
179 #suppress 110 in bfd_map_over_sections
180 #suppress 112 in bfd_map_over_sections
181 #suppress 530
182 #suppress 590 in swap_exec_header
183 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
184 #suppress 590 in bfd_dont_truncate_arname
185 #suppress 590 on ignore
186 #suppress 590 on abfd
187 #setopt load_flags $(CFLAGS)
188 #load $(CFILES)
a5c6b4b3 189
99a42820
RP
190
191#-----------------------------------------------------------------------------
192# 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
193#
194# 'VERSION' file must be present and contain a string of the form "x.y"
195#-----------------------------------------------------------------------------
196
197ver960.c: FORCE
198 rm -f ver960.c
199 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
200
201
202# This target should be invoked before building a new release.
203# 'VERSION' file must be present and contain a string of the form "x.y"
204#
205roll:
206 @V=`cat VERSION` ; \
207 MAJ=`sed 's/\..*//' VERSION` ; \
208 MIN=`sed 's/.*\.//' VERSION` ; \
209 V=$$MAJ.`expr $$MIN + 1` ; \
210 rm -f VERSION ; \
211 echo $$V >VERSION ; \
212 echo Version $$V
213
214# Dummy target to force execution of dependent targets.
215#
5176a6bc 216force:
99a42820 217
99a42820 218install:
6a469027
JG
219 cp libbfd.a $(libdir)/libbfd.a.new
220 $(RANLIB) $(libdir)/libbfd.a.new
221 mv -f $(libdir)/libbfd.a.new $(libdir)/libbfd.a
2bf92e47 222 cp $(INCDIR)/bfd.h $(includedir)/bfd.h
f259290f 223 $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)"
99a42820
RP
224
225# Target to uncomment host-specific lines in this makefile. Such lines must
226# have the following string beginning in column 1: #__<hostname>__#
227# Original Makefile is backed up as 'Makefile.old'.
228#
229# Invoke with: make make HOST=xxx
230#
231make:
232 -@if test $(HOST)x = x ; then \
233 echo '\aSpecify "make make HOST=???"'; \
234 exit 1; \
235 fi ; \
236 grep -s "^#The next line was generated by 'make make'" Makefile; \
237 if test $$? = 0 ; then \
238 echo "\aMakefile has already been processed with 'make make'";\
239 exit 1; \
240 fi ; \
241 mv -f Makefile Makefile.old; \
242 echo "#The next line was generated by 'make make'" >Makefile ; \
243 echo "HOST=$(HOST)" >>Makefile ; \
244 echo >>Makefile ; \
245 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
246
b7de6963 247Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
a26878d1 248 $(SHELL) ./config.status
a5c6b4b3
SC
249
250dep: $(CFILES)
251 mkdep $(CFLAGS) $?
6f715d66
SC
252
253
6f715d66 254
12e7087f 255headers:
b5493bc4 256 (cd $(docdir); $(MAKE) protos)
6f715d66 257 # Rebuild prototypes in bfd.h
12e7087f
JG
258 cp $(docdir)/bfd.h $(BFD_H)
259 cp $(docdir)/libbfd.h $(srcdir)/libbfd.h
260 cp $(docdir)/libcoff.h $(srcdir)/libcoff.h
261
262bfd.info:
b5493bc4 263 ( cd $(docdir); $(MAKE) bfd.info)
12e7087f
JG
264
265bfd.dvi:
b5493bc4 266 (cd $(docdir); $(MAKE) bfd.dvi)
12e7087f
JG
267
268bfd.ps:
b5493bc4 269 (cd $(docdir); $(MAKE) bfd.ps)
12e7087f
JG
270
271# What appears below is generated by a hacked mkdep using gcc -MM.
272
273# DO NOT DELETE THIS LINE -- mkdep uses it.
274# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
275
a26878d1
RP
276libbfd.o : libbfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
277opncls.o : opncls.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
278bfd.o : bfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
279archive.o : archive.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
280 $(INCDIR)/ar.h $(INCDIR)/ranlib.h
281targets.o : targets.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
282cache.o : cache.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
283archures.o : archures.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h
12e7087f 284aout64.o : aout64.c
a26878d1
RP
285aout32.o : aout32.c aoutx.h $(INCDIR)/bfd.h $(INCDIR)/ansidecl.h \
286 $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout64.h \
287 $(INCDIR)/stab.gnu.h $(INCDIR)/stab.def $(INCDIR)/ar.h
288sunos.o : sunos.c aoutf1.h $(INCDIR)/bfd.h $(INCDIR)/obstack.h \
289 libaout.h libbfd.h $(INCDIR)/aout64.h $(INCDIR)/stab.gnu.h \
290 $(INCDIR)/stab.def $(INCDIR)/ar.h
12e7087f 291demo64.o : demo64.c
3b4f1a5d 292
a26878d1
RP
293srec.o : srec.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
294oasys.o : oasys.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
295 $(INCDIR)/oasys.h liboasys.h
296ieee.o : ieee.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
297 $(INCDIR)/ieee.h libieee.h
3b4f1a5d
SC
298coff-h8300.o: coff-h8300.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
299 $(INCDIR)/coff-h8300.h $(INCDIR)/internalcoff.h libcoff.h coffcode.h
23d44ec9 300format.o : format.c $(INCDIR)/bfd.h \
a26878d1 301 $(INCDIR)/obstack.h libbfd.h
23d44ec9 302section.o : section.c $(INCDIR)/bfd.h \
a26878d1 303 $(INCDIR)/obstack.h libbfd.h
23d44ec9 304core.o : core.c $(INCDIR)/bfd.h \
a26878d1 305 $(INCDIR)/obstack.h libbfd.h
23d44ec9 306syms.o : syms.c $(INCDIR)/bfd.h \
a26878d1 307 $(INCDIR)/obstack.h libbfd.h
7de245d3 308syms.o : stab-syms.c
23d44ec9 309reloc.o : reloc.c $(INCDIR)/bfd.h \
a26878d1 310 $(INCDIR)/obstack.h libbfd.h
3b4f1a5d 311
a26878d1 312trad-core.o : trad-core.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h \
12e7087f 313 libbfd.h libaout.h
a26878d1
RP
314newsos3.o : newsos3.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
315 $(INCDIR)/aout64.h $(INCDIR)/stab.gnu.h $(INCDIR)/stab.def \
316 $(INCDIR)/ar.h libaout.h
b7de6963
JG
317i386aout.o : i386aout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
318 $(INCDIR)/aout64.h $(INCDIR)/stab.gnu.h $(INCDIR)/stab.def \
319 $(INCDIR)/ar.h libaout.h
a26878d1
RP
320bout.o : bout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
321 $(INCDIR)/bout.h $(INCDIR)/stab.gnu.h $(INCDIR)/stab.def libaout.h
12e7087f
JG
322
323# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
a26878d1 324
This page took 0.062665 seconds and 4 git commands to generate.