Oopsie.
[deliverable/binutils-gdb.git] / bfd / Makefile.in
CommitLineData
204ae00c
ILT
1# Makefile template for Configure for the BFD library.
2# Copyright (C) 1990, 1991, 1992, 1993 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 20
99a42820 21srcdir = .
fde8212e
RP
22
23prefix = /usr/local
24
5868184b
FF
25exec_prefix = $(prefix)
26bindir = $(exec_prefix)/bin
27libdir = $(exec_prefix)/lib
28
fde8212e 29datadir = $(prefix)/lib
5868184b 30mandir = $(prefix)/man
fde8212e
RP
31man1dir = $(mandir)/man1
32man2dir = $(mandir)/man2
33man3dir = $(mandir)/man3
34man4dir = $(mandir)/man4
35man5dir = $(mandir)/man5
36man6dir = $(mandir)/man6
37man7dir = $(mandir)/man7
38man8dir = $(mandir)/man8
39man9dir = $(mandir)/man9
5868184b 40infodir = $(prefix)/info
fde8212e 41includedir = $(prefix)/include
5868184b 42oldincludedir =
fbee3571 43docdir = doc
fde8212e
RP
44
45SHELL = /bin/sh
46
47INSTALL = install -c
48INSTALL_PROGRAM = $(INSTALL)
49INSTALL_DATA = $(INSTALL)
50
1b494bfa 51AR = ar
287c221d 52AR_FLAGS = rc
6e491a87 53CFLAGS = -g
fde8212e
RP
54BISON = bison
55MAKEINFO = makeinfo
56RANLIB = ranlib
57
51300bdb
KR
58CC_FOR_BUILD = $(CC)
59
d6a554ae 60INCDIR = $(srcdir)/../include
bb552c64 61CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
a5c6b4b3 62DEP = mkdep
12e7087f 63
f259290f 64SUBDIRS = doc
12e7087f 65
99a42820 66
5176a6bc 67TARGETLIB = libbfd.a
99a42820 68
a5220fb9 69# bfd.h goes here, for now
12f367a1 70BFD_H = bfd.h
99a42820 71
15db2044
KR
72# Some of these files should be in BFD*_BACKENDS below, but some programs
73# won't link without them. So, in order for some of the minimal-bfd
74# hacks to work, they're also included here for now.
13cadf76 75# gdb: ecoff.o elf.o
15db2044 76# objdump: elf.o
180acef5
DM
77#
78# Also, Jim Kingdon notes:
79# Writing S-records should be included in all (or at least most)
80# *-*-coff, *-*-aout, etc., configurations, because people will want to
81# be able to use objcopy to create S-records. (S-records are not useful
82# for the debugger, so if you are downloading things as S-records you
83# need two copies of the executable, one to download and one for the
84# debugger).
01087713
DM
85BFD_LIBS = \
86 archive.o archures.o bfd.o cache.o coffgen.o core.o ctor.o \
87 format.o init.o libbfd.o opncls.o reloc.o \
88 seclet.o section.o syms.o targets.o \
ac0d500c 89 ecoff.o elf.o srec.o
63ffe5ef 90
01087713
DM
91# This list is alphabetized to make it easier to keep in sync
92# with the decls and initializer in archures.c.
93ALL_MACHINES = \
94 cpu-a29k.o \
95 cpu-alpha.o \
96 cpu-h8300.o \
97 cpu-h8500.o \
98 cpu-hppa.o \
99 cpu-i386.o \
100 cpu-i960.o \
101 cpu-m68k.o \
102 cpu-m88k.o \
103 cpu-mips.o \
104 cpu-rs6000.o \
105 cpu-sh.o \
106 cpu-sparc.o \
107 cpu-vax.o \
108 cpu-we32k.o \
109 cpu-z8k.o
110
111# The .o files needed by all of the 32 bit vectors that are configured into
112# target_vector in targets.c if configured with --with-targets=all.
bb552c64 113BFD32_BACKENDS = \
01087713
DM
114 aout-adobe.o \
115 aout32.o \
116 bout.o \
117 coff-a29k.o \
118 coff-h8300.o \
119 coff-h8500.o \
120 coff-i386.o \
121 coff-i960.o \
122 coff-m68k.o \
123 coff-m88k.o \
124 coff-mips.o \
125 coff-rs6000.o \
126 coff-sh.o \
127 coff-u68k.o \
128 coff-we32k.o \
129 coff-z8k.o \
130 elf32-gen.o \
131 elf32-hppa.o \
132 elf32-i386.o \
133 elf32-i860.o \
134 elf32-m68k.o \
135 elf32-m88k.o \
136 elf32-mips.o \
137 elf32-sparc.o \
138 elf32.o \
139 hp300hpux.o \
d5a30a08 140 som.o \
01087713
DM
141 i386aout.o \
142 i386bsd.o \
143 i386linux.o \
144 i386lynx.o \
d5a30a08
ILT
145 i386lynx-cf.o \
146 netbsd386.o \
01087713
DM
147 i386mach3.o \
148 ieee.o \
d5a30a08
ILT
149 m68klynx.o \
150 m68klynx-cf.o \
01087713
DM
151 mipsbsd.o \
152 newsos3.o \
c3e964b9 153 nlm.o \
01087713
DM
154 nlm32-gen.o \
155 nlm32-i386.o \
156 nlm32.o \
157 oasys.o \
158 reloc16.o \
159 stab-syms.o \
160 sunos.o
161
162# The .o files needed by all of the 64 bit vectors that are configured into
163# target_vector in targets.c if configured with --with-targets=all
164# and --with-64-bit-bfd.
34075964 165BFD64_BACKENDS = \
01087713
DM
166 aout64.o \
167 coff-alpha.o \
168 demo64.o \
169 elf64-gen.o \
170 elf64.o \
171 nlm64-gen.o \
172 nlm64.o
173
174OPTIONAL_BACKENDS = \
175 aix386-core.o \
176 hpux-core.o \
d5a30a08
ILT
177 lynx-core.o \
178 osf-core.o \
01087713
DM
179 sco-core.o \
180 trad-core.o
99a42820 181
34075964
PB
182# These are defined by configure.in:
183# WORDSIZE=32
184# BFD_BACKENDS = $(BFD32_BACKENDS)
34075964 185
bb552c64
JK
186all:
187
22e98743
SC
188#### host and target dependent Makefile fragments come in here.
189###
190
98c0c56d 191FLAGS_TO_PASS = \
287c221d
PB
192 "prefix=$(prefix)" \
193 "exec_prefix=$(exec_prefix)" \
98c0c56d
BK
194 "against=$(against)" \
195 "AR=$(AR)" \
196 "AR_FLAGS=$(AR_FLAGS)" \
197 "CC=$(CC)" \
51300bdb 198 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
98c0c56d
BK
199 "CFLAGS=$(CFLAGS)" \
200 "RANLIB=$(RANLIB)" \
201 "MAKEINFO=$(MAKEINFO)" \
202 "INSTALL=$(INSTALL)" \
203 "INSTALL_DATA=$(INSTALL_DATA)" \
204 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
205 "BISON=$(BISON)"
206
d684720f 207ALL_CFLAGS=$(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES)
6e491a87 208.c.o:
d684720f 209 $(CC) -c $(ALL_CFLAGS) $<
6e491a87 210
99a42820 211# C source files that correspond to .o's.
a3b3dbdd
ILT
212CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \
213 archures.c coff-i386.c aout64.c aout32.c sunos.c demo64.c \
4d09e8ac 214 coff-i960.c srec.c tekhex.c oasys.c ieee.c \
dae31cf5
ILT
215 ecoff.c coff-m68k.c coff-u68k.c \
216 coff-a29k.c coff-rs6000.c coffgen.c format.c \
a3b3dbdd 217 section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c \
51300bdb 218 seclet.c coff-m88k.c coff-mips.c coff-sh.c trad-core.c newsos3.c \
d5a30a08 219 i386aout.c i386linux.c netbsd386.c i386mach3.c bout.c aout-adobe.c coff-we32k.c \
a3b3dbdd
ILT
220 i386bsd.c cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c \
221 cpu-m88k.c cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c \
d5a30a08 222 cpu-rs6000.c coff-h8300.c som.c cpu-hppa.c cpu-we32k.c reloc16.c \
51300bdb 223 mipsbsd.c cpu-sh.c \
9faacb92 224 elf32.c elf32-sparc.c elf32-i386.c elf32-i860.c elf32-m68k.c \
c55665ea
JK
225 elf32-hppa.c elf32-m88k.c elf32-mips.c elf32-gen.c \
226 elf64.c elf64-gen.c \
dae31cf5 227 nlm32.c nlm32-gen.c nlm32-i386.c nlm64.c nlm64-gen.c \
51300bdb 228 coff-alpha.c cpu-alpha.c \
d5a30a08
ILT
229 hp300bsd.c hp300hpux.c \
230 i386lynx.c i386lynx-cf.c m68klynx.c m68klynx-cf.c
63ffe5ef 231
5176a6bc
RP
232STAGESTUFF = $(TARGETLIB) $(OFILES)
233
fbee3571 234all: Makefile $(TARGETLIB)
98c0c56d 235 @$(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
5176a6bc 236
30662ca6 237.NOEXPORT:
204ae00c 238MAKEOVERRIDES=
30662ca6 239
5868184b 240check:
76019c92 241installcheck:
5868184b 242
74991624 243info dvi : force
9faacb92 244 @$(MAKE) subdir_do DO=$@ "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
2090ba83 245
5868184b 246clean-info:
98c0c56d 247 @$(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
5868184b 248
2090ba83 249install-info: force
98c0c56d 250 @$(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
2090ba83 251
dcdfa32c
DM
252# Various kinds of .o files to put in libbfd.a:
253# BFD_LIBS Generic routines, always needed.
5f9a2245
DM
254# BFD_BACKENDS Routines the configured targets need.
255# BFD_MACHINES Architecture-specific routines the configured targets need.
dcdfa32c
DM
256# HDEPFILES Routines the host needs, regardless of target.
257# TDEPFILES Routines the target needs, regardless of host.
6a469027 258OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
5176a6bc 259
c812942f 260ofiles : Makefile
15db2044 261 rm -f ofiles
2fdca021 262 f=""; \
c812942f 263 for i in $(OFILES) ; do \
2fdca021 264 case " $$f " in \
dae31cf5 265 *" $$i "*) ;; \
2fdca021
KR
266 *) f="$$f $$i" ;; \
267 esac ; \
268 done ; \
269 echo $$f > ofiles
c812942f
KR
270
271$(TARGETLIB): $(OFILES) ofiles
272 rm -f $(TARGETLIB)
273 @echo ofiles = `cat ofiles`
274 $(AR) $(AR_FLAGS) $(TARGETLIB) `cat ofiles`
275 $(RANLIB) $(TARGETLIB)
5176a6bc 276
98c0c56d
BK
277# When compiling archures.c and targets.c, supply the default target
278# info from configure.
279
280
51300bdb 281targets.o: targets.c Makefile
5f9a2245 282 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $<
4a29cb1e 283
51300bdb 284archures.o: archures.c Makefile
5f9a2245 285 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $<
98c0c56d 286
f259290f 287subdir_do: force
6e491a87 288 @for i in $(DODIRS); do \
5868184b
FF
289 if [ -d ./$$i ] ; then \
290 if (cd ./$$i; \
98c0c56d 291 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
f259290f
RP
292 else exit 1 ; fi ; \
293 else true ; fi ; \
294 done
295
99a42820
RP
296tags etags: TAGS
297
5176a6bc 298TAGS: force
453063fe 299 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
99a42820 300
ef2810d0
PB
301do_mostlyclean:
302 rm -f *.o *~ core *.E *.p *.ip aout-params.h gen-aout
fbee3571 303do_clean: do_mostlyclean
15db2044 304 rm -f libbfd.a TAGS bfd.h stmp-bfd.h ofiles
ef2810d0 305do_distclean: do_clean
0e238aa7 306 rm -f Makefile config.status sysdep.h
ef2810d0 307do_realclean: do_distclean
15db2044 308 rm -f $(srcdir)/libcoff.h $(srcdir)/libbfd.h $(srcdir)/bfd-in2.h
ef2810d0
PB
309
310mostlyclean: do_mostlyclean
311 $(MAKE) subdir_do DO=mostlyclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
fbee3571 312clean: do_clean
ef2810d0 313 $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
0e238aa7 314distclean:
ef2810d0 315 $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
180acef5 316 $(MAKE) do_distclean
0e238aa7 317clobber realclean:
ef2810d0 318 $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
180acef5 319 $(MAKE) do_realclean
99a42820 320
23d44ec9
JG
321# Mark everything as depending on config.status, since the timestamp on
322# sysdep.h might actually move backwards if we reconfig and relink it
323# to a different hosts/h-xxx.h file. This will force a recompile anyway.
d684720f 324BFD_H_DEPS= $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h
23d44ec9 325RECONFIG = config.status
d684720f
KR
326$(BFD_LIBS): libbfd.h $(BFD_H) $(RECONFIG) $(BFD_H_DEPS)
327$(BFD_MACHINES): libbfd.h $(BFD_H) $(RECONFIG) $(BFD_H_DEPS)
328$(BFD_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG) $(BFD_H_DEPS)
329$(OPTIONAL_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG) $(BFD_H_DEPS)
99a42820 330
cbdc7909
JG
331# Get around a Sun Make bug in SunOS 4.1.1 with VPATH
332cpu-i386.o:cpu-i386.c
fbee3571 333cpu-z8k.o: cpu-z8k.c
204ae00c 334cpu-h8500.o: cpu-h8500.c
fbee3571 335cpu-we32k.o: cpu-we32k.c
cbdc7909 336
99a42820
RP
337saber:
338 #suppress 65 on bfd_map_over_sections
339 #suppress 66 on bfd_map_over_sections
340 #suppress 67 on bfd_map_over_sections
341 #suppress 68 on bfd_map_over_sections
342 #suppress 69 on bfd_map_over_sections
343 #suppress 70 on bfd_map_over_sections
344 #suppress 110 in bfd_map_over_sections
345 #suppress 112 in bfd_map_over_sections
346 #suppress 530
347 #suppress 590 in swap_exec_header
348 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
349 #suppress 590 in bfd_dont_truncate_arname
350 #suppress 590 on ignore
351 #suppress 590 on abfd
352 #setopt load_flags $(CFLAGS)
353 #load $(CFILES)
a5c6b4b3 354
99a42820
RP
355
356#-----------------------------------------------------------------------------
357# 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
358#
359# 'VERSION' file must be present and contain a string of the form "x.y"
360#-----------------------------------------------------------------------------
361
362ver960.c: FORCE
363 rm -f ver960.c
364 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
365
366
367# This target should be invoked before building a new release.
368# 'VERSION' file must be present and contain a string of the form "x.y"
369#
370roll:
371 @V=`cat VERSION` ; \
372 MAJ=`sed 's/\..*//' VERSION` ; \
373 MIN=`sed 's/.*\.//' VERSION` ; \
374 V=$$MAJ.`expr $$MIN + 1` ; \
375 rm -f VERSION ; \
376 echo $$V >VERSION ; \
377 echo Version $$V
378
379# Dummy target to force execution of dependent targets.
380#
5176a6bc 381force:
99a42820 382
99a42820 383install:
fde8212e
RP
384 $(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a
385 $(RANLIB) $(libdir)/libbfd.a
75ff7895
DZ
386# Install BFD include file, and others that it needs. Install them
387# both in GCC's include directory, and in the system include dir
388# if configured as $(oldincludedir) -- which it usually isnt.
a5220fb9 389 $(INSTALL_DATA) $(BFD_H) $(includedir)/bfd.h
6cabab78
DZ
390 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(includedir)/ansidecl.h
391 $(INSTALL_DATA) $(INCDIR)/obstack.h $(includedir)/obstack.h
5d4c714e
DM
392 -if test -z "$(oldincludedir)"; then true; else \
393 test -d $(oldincludedir) || mkdir $(oldincludedir); \
394 $(INSTALL_DATA) $(BFD_H) $(oldincludedir)/bfd.h; \
395 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(oldincludedir)/ansidecl.h; \
396 $(INSTALL_DATA) $(INCDIR)/obstack.h $(oldincludedir)/obstack.h; \
397 @$(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS); \
398 fi
99a42820 399
dae31cf5
ILT
400Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
401 $(SHELL) config.status
a5c6b4b3 402
d684720f
KR
403# This rule really wants a mkdep that runs "gcc -MM".
404.dep1: $(CFILES)
405 rm -f .dep1 .dep2
406 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
407 $(DEP) -f .dep2 $(ALL_CFLAGS) $?
408 mv -f .dep2 .dep1
409
410dep.sed: dep-in.sed Makefile
411 sed <$(srcdir)/dep-in.sed >dep.sed \
412 -e 's!@BFD_H@!$(BFD_H)!' \
413 -e 's!@INCDIR@!$(INCDIR)!' \
414 -e 's!@srcdir@!$(srcdir)!'
415
416.dep: .dep1 dep.sed
417 sed -f dep.sed <.dep1 >.dep
418
419dep: .dep
420 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
421 cat .dep >> tmp-Makefile
422 mv -f tmp-Makefile Makefile
6f715d66 423
5868184b 424host-aout.o: Makefile
6f715d66 425
5868184b
FF
426# The following program can be used to generate a simple config file
427# which can be folded into an h-XXX file for a new host, with some editing.
d01cd8fc
FF
428aout-params.h: gen-aout
429 ./gen-aout > aout-params.h
5868184b
FF
430gen-aout: $(srcdir)/gen-aout.c Makefile
431 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
6f715d66 432
34075964
PB
433BFDIN_H= $(srcdir)/bfd-in2.h
434
a5220fb9 435$(BFD_H): stmp-bfd.h ; @true
75ff7895 436
12f367a1
KR
437# The file ../include/bfd.h is from earlier attempts to get this right.
438# If the file is still there, kill it.
15db2044
KR
439stmp-bfd.h : $(srcdir)/bfd-in2.h Makefile
440 rm -f bfd.h-new 64 ../include/bfd.h
12f367a1 441 -grep HOST_64_BIT sysdep.h > 64
15db2044
KR
442 sed -e 's/@WORDSIZE@/$(WORDSIZE)/' -e '/64-bit.*sysdep.h/ r 64' < $(srcdir)/bfd-in2.h > bfd.h-new
443 $(srcdir)/../move-if-change bfd.h-new $(BFD_H)
12f367a1 444 rm -f 64
75ff7895 445 touch stmp-bfd.h
34075964 446
a5220fb9 447# Could really use a "copy-if-change"...
12e7087f 448headers:
98c0c56d 449 (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS))
15db2044
KR
450 cp $(docdir)/bfd.h bfd-in2.h-new
451 $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
6bb4c923
KR
452 cp $(docdir)/libbfd.h libbfd.h-new
453 $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
454 cp $(docdir)/libcoff.h libcoff.h-new
455 $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
12e7087f
JG
456
457bfd.info:
fbee3571 458 (cd $(docdir); $(MAKE) bfd.info $(FLAGS_TO_PASS))
12e7087f
JG
459
460bfd.dvi:
98c0c56d 461 (cd $(docdir); $(MAKE) bfd.dvi $(FLAGS_TO_PASS))
12e7087f
JG
462
463bfd.ps:
98c0c56d 464 (cd $(docdir); $(MAKE) bfd.ps $(FLAGS_TO_PASS))
12e7087f
JG
465
466# What appears below is generated by a hacked mkdep using gcc -MM.
467
468# DO NOT DELETE THIS LINE -- mkdep uses it.
469# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
470
d684720f
KR
471libbfd.o : libbfd.c
472opncls.o : opncls.c
6327ba5d
KR
473bfd.o : bfd.c \
474 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
475 libcoff.h libecoff.h libelf.h $(INCDIR)/elf/common.h \
476 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h
477archive.o : archive.c \
478 $(INCDIR)/aout/ar.h \
479 $(INCDIR)/aout/ranlib.h
d684720f
KR
480targets.o : targets.c
481cache.o : cache.c
482archures.o : archures.c
6327ba5d
KR
483coff-i386.o : coff-i386.c \
484 $(INCDIR)/coff/i386.h \
485 $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
486 seclet.h coffswap.h
d684720f
KR
487aout64.o : aout64.c aoutx.h \
488 libaout.h \
489 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
490 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
491aout32.o : aout32.c aoutx.h \
492 libaout.h \
493 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
494 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
6327ba5d
KR
495sunos.o : sunos.c aoutf1.h \
496 $(INCDIR)/aout/sun4.h \
497 libaout.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
498 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
499demo64.o : demo64.c aoutf1.h \
500 $(INCDIR)/aout/sun4.h \
501 libaout.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
502 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
503coff-i960.o : coff-i960.c \
504 $(INCDIR)/coff/i960.h \
505 $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
506 seclet.h coffswap.h
d684720f
KR
507srec.o : srec.c
508tekhex.o : tekhex.c
6327ba5d
KR
509oasys.o : oasys.c \
510 $(INCDIR)/oasys.h \
511 liboasys.h
512ieee.o : ieee.c \
513 $(INCDIR)/ieee.h libieee.h
514ecoff.o : ecoff.c \
515 seclet.h \
516 $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h libaout.h \
517 $(INCDIR)/aout/aout64.h $(INCDIR)/coff/internal.h \
518 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \
519 $(INCDIR)/coff/ecoff.h libcoff.h libecoff.h
520coff-m68k.o : coff-m68k.c \
521 $(INCDIR)/coff/m68k.h \
522 $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
523 seclet.h coffswap.h
524coff-u68k.o : coff-u68k.c coff-m68k.c \
525 $(INCDIR)/coff/m68k.h \
526 $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
527 seclet.h coffswap.h
528coff-a29k.o : coff-a29k.c \
529 $(INCDIR)/coff/a29k.h \
530 $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
531 seclet.h coffswap.h
532coff-rs6000.o : coff-rs6000.c \
533 $(INCDIR)/coff/internal.h \
534 $(INCDIR)/coff/rs6000.h libcoff.h coffcode.h \
535 seclet.h coffswap.h
536coffgen.o : coffgen.c \
537 $(INCDIR)/coff/internal.h \
538 seclet.h libcoff.h
d684720f
KR
539format.o : format.c
540section.o : section.c
541core.o : core.c
542syms.o : syms.c \
6327ba5d 543 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
d684720f
KR
544stab-syms.o : stab-syms.c \
545 libaout.h $(INCDIR)/aout/aout64.h \
546 $(INCDIR)/aout/stab.def
6327ba5d
KR
547reloc.o : reloc.c \
548 seclet.h
d684720f
KR
549init.o : init.c
550ctor.o : ctor.c
6327ba5d
KR
551seclet.o : seclet.c \
552 seclet.h \
553 $(INCDIR)/coff/internal.h
554coff-m88k.o : coff-m88k.c \
555 $(INCDIR)/coff/m88k.h \
556 $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
557 seclet.h coffswap.h
558coff-mips.o : coff-mips.c \
559 seclet.h \
560 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
561 $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \
562 $(INCDIR)/coff/mips.h libcoff.h libecoff.h \
563 coffswap.h ecoffswap.h
564coff-sh.o : coff-sh.c \
565 $(INCDIR)/coff/sh.h \
566 $(INCDIR)/coff/internal.h libcoff.h seclet.h \
567 coffcode.h coffswap.h
568trad-core.o : trad-core.c \
569 libaout.h
570newsos3.o : newsos3.c \
571 $(INCDIR)/aout/aout64.h \
572 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
573 $(INCDIR)/aout/ar.h libaout.h aout-target.h
574i386aout.o : i386aout.c \
575 libaout.h \
576 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
577 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
578i386linux.o : i386linux.c \
579 $(INCDIR)/aout/aout64.h \
580 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
581 $(INCDIR)/aout/ar.h libaout.h aout-target.h
582netbsd386.o : netbsd386.c \
583 libaout.h \
584 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
585 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
586i386mach3.o : i386mach3.c \
587 $(INCDIR)/aout/aout64.h \
588 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
589 $(INCDIR)/aout/ar.h libaout.h aout-target.h
590bout.o : bout.c \
591 seclet.h $(INCDIR)/bout.h \
592 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
593 libaout.h
594aout-adobe.o : aout-adobe.c \
595 $(INCDIR)/aout/adobe.h \
596 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
597 libaout.h
598coff-we32k.o : coff-we32k.c \
599 $(INCDIR)/coff/we32k.h \
600 $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
601 seclet.h coffswap.h
602i386bsd.o : i386bsd.c \
603 libaout.h \
604 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
605 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
d684720f
KR
606cpu-h8300.o : cpu-h8300.c
607cpu-i960.o : cpu-i960.c
608cpu-sparc.o : cpu-sparc.c
609cpu-m68k.o : cpu-m68k.c
610cpu-m88k.o : cpu-m88k.c
611cpu-vax.o : cpu-vax.c
612cpu-mips.o : cpu-mips.c
613cpu-a29k.o : cpu-a29k.c
614cpu-i386.o : cpu-i386.c
615cpu-rs6000.o : cpu-rs6000.c
6327ba5d
KR
616coff-h8300.o : coff-h8300.c \
617 $(INCDIR)/coff/h8300.h \
618 $(INCDIR)/coff/internal.h seclet.h libcoff.h \
619 coffcode.h coffswap.h
d684720f
KR
620som.o : som.c
621cpu-hppa.o : cpu-hppa.c
622cpu-we32k.o : cpu-we32k.c
6327ba5d
KR
623reloc16.o : reloc16.c \
624 seclet.h \
625 $(INCDIR)/coff/internal.h libcoff.h
626mipsbsd.o : mipsbsd.c \
627 libaout.h \
628 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
629 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
d684720f 630cpu-sh.o : cpu-sh.c
6327ba5d
KR
631elf32.o : elf32.c elfcode.h \
632 libelf.h \
633 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
634 $(INCDIR)/elf/external.h
635elf32-sparc.o : elf32-sparc.c \
636 libelf.h \
637 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
638 $(INCDIR)/elf/external.h elf32-target.h
639elf32-i386.o : elf32-i386.c \
640 libelf.h \
641 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
642 $(INCDIR)/elf/external.h elf32-target.h
643elf32-i860.o : elf32-i860.c \
644 libelf.h \
645 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
646 $(INCDIR)/elf/external.h elf32-target.h
647elf32-m68k.o : elf32-m68k.c \
648 libelf.h \
649 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
650 $(INCDIR)/elf/external.h elf32-target.h
651elf32-hppa.o : elf32-hppa.c \
652 libelf.h \
653 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
654 $(INCDIR)/elf/external.h elf32-hppa.h libhppa.h \
655 $(INCDIR)/aout/aout64.h hppa_stubs.h elf32-target.h
656elf32-m88k.o : elf32-m88k.c \
657 libelf.h \
658 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
659 $(INCDIR)/elf/external.h elf32-target.h
660elf32-mips.o : elf32-mips.c \
661 libelf.h \
662 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
663 $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h \
664 elf32-target.h
665elf32-gen.o : elf32-gen.c \
666 libelf.h \
667 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
668 $(INCDIR)/elf/external.h elf32-target.h
669elf64.o : elf64.c elfcode.h \
670 libelf.h \
671 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
672 $(INCDIR)/elf/external.h
673elf64-gen.o : elf64-gen.c \
674 libelf.h \
675 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
676 $(INCDIR)/elf/external.h elf64-target.h
677nlm32.o : nlm32.c nlmcode.h \
678 libnlm.h \
679 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
680 $(INCDIR)/nlm/external.h
681nlm32-gen.o : nlm32-gen.c \
682 libnlm.h \
683 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
684 $(INCDIR)/nlm/external.h nlm-target.h
685nlm32-i386.o : nlm32-i386.c \
686 libnlm.h \
687 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
688 $(INCDIR)/nlm/external.h nlm-target.h
689nlm64.o : nlm64.c nlmcode.h \
690 libnlm.h \
691 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
692 $(INCDIR)/nlm/external.h
693nlm64-gen.o : nlm64-gen.c \
694 libnlm.h \
695 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
696 $(INCDIR)/nlm/external.h nlm-target.h
697coff-alpha.o : coff-alpha.c \
698 seclet.h \
699 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
700 $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \
701 $(INCDIR)/coff/alpha.h libcoff.h libecoff.h \
702 coffswap.h ecoffswap.h
d684720f 703cpu-alpha.o : cpu-alpha.c
6327ba5d
KR
704hp300bsd.o : hp300bsd.c \
705 libaout.h \
706 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
707 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
d684720f
KR
708hp300hpux.o : hp300hpux.c $(INCDIR)/aout/hp300hpux.h \
709 aoutx.h \
710 libaout.h $(INCDIR)/aout/aout64.h \
711 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
712 $(INCDIR)/aout/ar.h aout-target.h
6327ba5d
KR
713i386lynx.o : i386lynx.c \
714 libaout.h \
715 $(INCDIR)/aout/aout64.h aout-target.h $(INCDIR)/aout/stab_gnu.h \
716 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
717i386lynx-cf.o : i386lynx-cf.c coff-i386.c \
718 \
719 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h \
720 libcoff.h coffcode.h seclet.h coffswap.h
721m68klynx.o : m68klynx.c \
722 libaout.h \
723 $(INCDIR)/aout/aout64.h aout-target.h $(INCDIR)/aout/stab_gnu.h \
724 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
725m68klynx-cf.o : m68klynx-cf.c coff-m68k.c \
726 \
727 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h \
728 libcoff.h coffcode.h seclet.h coffswap.h
6bb4c923 729
12e7087f 730# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.138079 seconds and 4 git commands to generate.