]>
Commit | Line | Data |
---|---|---|
a3b3dbdd | 1 | # Makefile template for Configure for the BFD library. |
5868184b | 2 | # Copyright (C) 1990, 1991, 1992 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 | 21 | srcdir = . |
fde8212e RP |
22 | |
23 | prefix = /usr/local | |
24 | ||
5868184b FF |
25 | exec_prefix = $(prefix) |
26 | bindir = $(exec_prefix)/bin | |
27 | libdir = $(exec_prefix)/lib | |
28 | ||
fde8212e | 29 | datadir = $(prefix)/lib |
5868184b | 30 | mandir = $(prefix)/man |
fde8212e RP |
31 | man1dir = $(mandir)/man1 |
32 | man2dir = $(mandir)/man2 | |
33 | man3dir = $(mandir)/man3 | |
34 | man4dir = $(mandir)/man4 | |
35 | man5dir = $(mandir)/man5 | |
36 | man6dir = $(mandir)/man6 | |
37 | man7dir = $(mandir)/man7 | |
38 | man8dir = $(mandir)/man8 | |
39 | man9dir = $(mandir)/man9 | |
5868184b | 40 | infodir = $(prefix)/info |
fde8212e | 41 | includedir = $(prefix)/include |
5868184b | 42 | oldincludedir = |
fbee3571 | 43 | docdir = doc |
fde8212e RP |
44 | |
45 | SHELL = /bin/sh | |
46 | ||
47 | INSTALL = install -c | |
48 | INSTALL_PROGRAM = $(INSTALL) | |
49 | INSTALL_DATA = $(INSTALL) | |
50 | ||
1b494bfa | 51 | AR = ar |
287c221d | 52 | AR_FLAGS = rc |
6e491a87 | 53 | CFLAGS = -g |
fde8212e RP |
54 | BISON = bison |
55 | MAKEINFO = makeinfo | |
56 | RANLIB = ranlib | |
57 | ||
d6a554ae | 58 | INCDIR = $(srcdir)/../include |
40773f7f | 59 | CSEARCH = -I. -I$(srcdir) -I$(INCDIR) |
a5c6b4b3 | 60 | DEP = mkdep |
12e7087f | 61 | |
f259290f | 62 | SUBDIRS = doc |
12e7087f | 63 | |
99a42820 | 64 | |
7de245d3 PB |
65 | # Change this (to MINIMIZE=1) to save space in executables. |
66 | # Currently, all this does is control the target_vector in targets.c. | |
67 | MINIMIZE=0 | |
68 | ||
5176a6bc | 69 | TARGETLIB = libbfd.a |
99a42820 RP |
70 | |
71 | ||
726cc6ef | 72 | BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \ |
a3b3dbdd ILT |
73 | archures.o core.o section.o format.o syms.o reloc.o init.o \ |
74 | ctor.o seclet.o coffgen.o reloc16.o | |
63ffe5ef | 75 | |
cbdc7909 | 76 | BFD_MACHINES = cpu-h8300.o cpu-i960.o cpu-sparc.o cpu-m68k.o cpu-m88k.o \ |
6bb4c923 | 77 | cpu-vax.o cpu-mips.o cpu-a29k.o cpu-i386.o cpu-rs6000.o cpu-hppa.o \ |
fbee3571 | 78 | cpu-z8k.o cpu-we32k.o |
99a42820 | 79 | |
69e0d34d | 80 | BFD_BACKENDS = oasys.o ieee.o srec.o elf.o stab-syms.o\ |
b7de6963 | 81 | aout64.o aout32.o demo64.o sunos.o newsos3.o i386aout.o bout.o \ |
fbee3571 | 82 | aout-adobe.o \ |
156e3852 | 83 | coff-i960.o coff-a29k.o coff-m68k.o coff-i386.o coff-m88k.o \ |
98c0c56d | 84 | coff-mips.o coff-rs6000.o coff-h8300.o coff-msym.o hppa.o i386linux.o \ |
fbee3571 | 85 | coff-z8k.o coff-we32k.o i386bsd.o |
63ffe5ef | 86 | |
c6e7b0ed | 87 | OPTIONAL_BACKENDS = trad-core.o |
99a42820 | 88 | |
22e98743 SC |
89 | #### host and target dependent Makefile fragments come in here. |
90 | ### | |
91 | ||
98c0c56d | 92 | FLAGS_TO_PASS = \ |
287c221d PB |
93 | "prefix=$(prefix)" \ |
94 | "exec_prefix=$(exec_prefix)" \ | |
98c0c56d BK |
95 | "against=$(against)" \ |
96 | "AR=$(AR)" \ | |
97 | "AR_FLAGS=$(AR_FLAGS)" \ | |
98 | "CC=$(CC)" \ | |
99 | "CFLAGS=$(CFLAGS)" \ | |
100 | "RANLIB=$(RANLIB)" \ | |
101 | "MAKEINFO=$(MAKEINFO)" \ | |
102 | "INSTALL=$(INSTALL)" \ | |
103 | "INSTALL_DATA=$(INSTALL_DATA)" \ | |
104 | "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ | |
105 | "BISON=$(BISON)" | |
106 | ||
6e491a87 | 107 | .c.o: |
892205bc | 108 | $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $< |
6e491a87 | 109 | |
99a42820 | 110 | BFD_H=$(INCDIR)/bfd.h |
99a42820 RP |
111 | |
112 | # C source files that correspond to .o's. | |
a3b3dbdd ILT |
113 | CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \ |
114 | archures.c coff-i386.c aout64.c aout32.c sunos.c demo64.c \ | |
115 | coff-i960.c srec.c tekhex.c oasys.c ieee.c coff-m68k.c \ | |
116 | coff-a29k.c coff-rs6000.c coff-msym.c coffgen.c format.c \ | |
117 | section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c \ | |
118 | seclet.c coff-m88k.c coff-mips.c trad-core.c newsos3.c \ | |
119 | i386aout.c i386linux.c bout.c elf.c aout-adobe.c coff-we32k.c \ | |
120 | i386bsd.c cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c \ | |
121 | cpu-m88k.c cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c \ | |
122 | cpu-rs6000.c coff-h8300.c hppa.c cpu-hppa.c cpu-we32k.c reloc16.c | |
63ffe5ef | 123 | |
5176a6bc RP |
124 | STAGESTUFF = $(TARGETLIB) $(OFILES) |
125 | ||
fbee3571 | 126 | all: Makefile $(TARGETLIB) |
98c0c56d | 127 | @$(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
5176a6bc | 128 | |
30662ca6 RP |
129 | .NOEXPORT: |
130 | ||
5868184b FF |
131 | check: |
132 | ||
74991624 | 133 | info dvi : force |
98c0c56d | 134 | @$(MAKE) subdir_do DO=info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
2090ba83 | 135 | |
5868184b | 136 | clean-info: |
98c0c56d | 137 | @$(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
5868184b | 138 | |
2090ba83 | 139 | install-info: force |
98c0c56d | 140 | @$(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
2090ba83 | 141 | |
6a469027 JG |
142 | # HDEPFILES comes from the host config; TDEPFILES from the target config. |
143 | OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES) | |
5176a6bc RP |
144 | |
145 | $(TARGETLIB): $(OFILES) | |
146 | rm -f $(TARGETLIB) | |
1b494bfa RP |
147 | $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES) |
148 | $(RANLIB) $(TARGETLIB) | |
5176a6bc | 149 | |
98c0c56d BK |
150 | # When compiling archures.c and targets.c, supply the default target |
151 | # info from configure. | |
152 | ||
153 | ||
4a29cb1e | 154 | targets.o: targets.c |
6cabab78 | 155 | $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $< |
4a29cb1e | 156 | |
98c0c56d | 157 | archures.o: archures.c |
6cabab78 | 158 | $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $< |
98c0c56d | 159 | |
f259290f | 160 | subdir_do: force |
6e491a87 | 161 | @for i in $(DODIRS); do \ |
5868184b FF |
162 | if [ -d ./$$i ] ; then \ |
163 | if (cd ./$$i; \ | |
98c0c56d | 164 | $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \ |
f259290f RP |
165 | else exit 1 ; fi ; \ |
166 | else true ; fi ; \ | |
167 | done | |
168 | ||
99a42820 RP |
169 | tags etags: TAGS |
170 | ||
5176a6bc | 171 | TAGS: force |
453063fe | 172 | etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c |
99a42820 | 173 | |
ef2810d0 PB |
174 | do_mostlyclean: |
175 | rm -f *.o *~ core *.E *.p *.ip aout-params.h gen-aout | |
fbee3571 | 176 | do_clean: do_mostlyclean |
99a42820 | 177 | rm -f libbfd.a TAGS |
ef2810d0 | 178 | do_distclean: do_clean |
0e238aa7 | 179 | rm -f Makefile config.status sysdep.h |
ef2810d0 PB |
180 | do_realclean: do_distclean |
181 | ||
182 | mostlyclean: do_mostlyclean | |
183 | $(MAKE) subdir_do DO=mostlyclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) | |
fbee3571 | 184 | clean: do_clean |
ef2810d0 | 185 | $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
0e238aa7 | 186 | distclean: |
ef2810d0 | 187 | $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
0e238aa7 PB |
188 | make do_distclean |
189 | clobber realclean: | |
ef2810d0 | 190 | $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
0e238aa7 | 191 | make do_realclean |
99a42820 | 192 | |
23d44ec9 JG |
193 | # Mark everything as depending on config.status, since the timestamp on |
194 | # sysdep.h might actually move backwards if we reconfig and relink it | |
195 | # to a different hosts/h-xxx.h file. This will force a recompile anyway. | |
196 | RECONFIG = config.status | |
197 | $(BFD_LIBS): libbfd.h $(BFD_H) $(RECONFIG) | |
198 | $(BFD_MACHINES): libbfd.h $(BFD_H) $(RECONFIG) | |
199 | $(BFD_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG) | |
200 | $(OPTIONAL_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG) | |
99a42820 | 201 | |
cbdc7909 JG |
202 | # Get around a Sun Make bug in SunOS 4.1.1 with VPATH |
203 | cpu-i386.o:cpu-i386.c | |
fbee3571 | 204 | cpu-z8k.o: cpu-z8k.c |
fbee3571 | 205 | cpu-we32k.o: cpu-we32k.c |
cbdc7909 | 206 | |
99a42820 RP |
207 | saber: |
208 | #suppress 65 on bfd_map_over_sections | |
209 | #suppress 66 on bfd_map_over_sections | |
210 | #suppress 67 on bfd_map_over_sections | |
211 | #suppress 68 on bfd_map_over_sections | |
212 | #suppress 69 on bfd_map_over_sections | |
213 | #suppress 70 on bfd_map_over_sections | |
214 | #suppress 110 in bfd_map_over_sections | |
215 | #suppress 112 in bfd_map_over_sections | |
216 | #suppress 530 | |
217 | #suppress 590 in swap_exec_header | |
218 | #suppress 590 in _bfd_dummy_core_file_matches_executable_p | |
219 | #suppress 590 in bfd_dont_truncate_arname | |
220 | #suppress 590 on ignore | |
221 | #suppress 590 on abfd | |
222 | #setopt load_flags $(CFLAGS) | |
223 | #load $(CFILES) | |
a5c6b4b3 | 224 | |
99a42820 RP |
225 | |
226 | #----------------------------------------------------------------------------- | |
227 | # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT | |
228 | # | |
229 | # 'VERSION' file must be present and contain a string of the form "x.y" | |
230 | #----------------------------------------------------------------------------- | |
231 | ||
232 | ver960.c: FORCE | |
233 | rm -f ver960.c | |
234 | echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c | |
235 | ||
236 | ||
237 | # This target should be invoked before building a new release. | |
238 | # 'VERSION' file must be present and contain a string of the form "x.y" | |
239 | # | |
240 | roll: | |
241 | @V=`cat VERSION` ; \ | |
242 | MAJ=`sed 's/\..*//' VERSION` ; \ | |
243 | MIN=`sed 's/.*\.//' VERSION` ; \ | |
244 | V=$$MAJ.`expr $$MIN + 1` ; \ | |
245 | rm -f VERSION ; \ | |
246 | echo $$V >VERSION ; \ | |
247 | echo Version $$V | |
248 | ||
249 | # Dummy target to force execution of dependent targets. | |
250 | # | |
5176a6bc | 251 | force: |
99a42820 | 252 | |
99a42820 | 253 | install: |
98c0c56d BK |
254 | -parent=`echo $(libdir)|sed -e 's@/[^/]*$$@@'`; \ |
255 | if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi | |
256 | -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi | |
fde8212e RP |
257 | $(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a |
258 | $(RANLIB) $(libdir)/libbfd.a | |
98c0c56d BK |
259 | -parent=`echo $(includedir)|sed -e 's@/[^/]*$$@@'`; \ |
260 | if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi | |
261 | -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi | |
6cabab78 DZ |
262 | # Install BFD include file, and others that it needs. Install them |
263 | # both in GCC's include directory, and in the system include dir | |
264 | # if configured as $(oldincludedir) -- which it usually isnt. | |
fde8212e | 265 | $(INSTALL_DATA) $(INCDIR)/bfd.h $(includedir)/bfd.h |
6cabab78 DZ |
266 | $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(includedir)/ansidecl.h |
267 | $(INSTALL_DATA) $(INCDIR)/obstack.h $(includedir)/obstack.h | |
268 | -if [ -z "$(oldincludedir)" ] ; then true ; \ | |
269 | else if [ -d $(oldincludedir) ] ; then true ; \ | |
270 | else mkdir $(oldincludedir) ; \ | |
271 | fi ; \ | |
272 | $(INSTALL_DATA) $(INCDIR)/bfd.h $(oldincludedir)/bfd.h;\ | |
273 | $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(oldincludedir)/ansidecl.h;\ | |
274 | $(INSTALL_DATA) $(INCDIR)/obstack.h $(oldincludedir)/obstack.h;\ | |
275 | fi | |
98c0c56d | 276 | @$(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
99a42820 | 277 | |
99a42820 | 278 | |
b7de6963 | 279 | Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) |
a26878d1 | 280 | $(SHELL) ./config.status |
a5c6b4b3 SC |
281 | |
282 | dep: $(CFILES) | |
283 | mkdep $(CFLAGS) $? | |
6f715d66 | 284 | |
5868184b | 285 | host-aout.o: Makefile |
6f715d66 | 286 | |
5868184b FF |
287 | # The following program can be used to generate a simple config file |
288 | # which can be folded into an h-XXX file for a new host, with some editing. | |
d01cd8fc FF |
289 | aout-params.h: gen-aout |
290 | ./gen-aout > aout-params.h | |
5868184b FF |
291 | gen-aout: $(srcdir)/gen-aout.c Makefile |
292 | $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c | |
6f715d66 | 293 | |
12e7087f | 294 | headers: |
98c0c56d | 295 | (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS)) |
6bb4c923 KR |
296 | # Could really use a "copy-if-change"... |
297 | cp $(docdir)/bfd.h bfd.h-new | |
298 | $(srcdir)/../move-if-change bfd.h-new $(BFD_H) | |
299 | cp $(docdir)/libbfd.h libbfd.h-new | |
300 | $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h | |
301 | cp $(docdir)/libcoff.h libcoff.h-new | |
302 | $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h | |
12e7087f JG |
303 | |
304 | bfd.info: | |
fbee3571 | 305 | (cd $(docdir); $(MAKE) bfd.info $(FLAGS_TO_PASS)) |
12e7087f JG |
306 | |
307 | bfd.dvi: | |
98c0c56d | 308 | (cd $(docdir); $(MAKE) bfd.dvi $(FLAGS_TO_PASS)) |
12e7087f JG |
309 | |
310 | bfd.ps: | |
98c0c56d | 311 | (cd $(docdir); $(MAKE) bfd.ps $(FLAGS_TO_PASS)) |
12e7087f JG |
312 | |
313 | # What appears below is generated by a hacked mkdep using gcc -MM. | |
314 | ||
315 | # DO NOT DELETE THIS LINE -- mkdep uses it. | |
316 | # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. | |
317 | ||
a26878d1 RP |
318 | libbfd.o : libbfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h |
319 | opncls.o : opncls.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h | |
320 | bfd.o : bfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h | |
321 | archive.o : archive.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ | |
fde8212e | 322 | $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h |
a26878d1 RP |
323 | targets.o : targets.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h |
324 | cache.o : cache.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h | |
325 | archures.o : archures.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h | |
12e7087f | 326 | aout64.o : aout64.c |
a26878d1 | 327 | aout32.o : aout32.c aoutx.h $(INCDIR)/bfd.h $(INCDIR)/ansidecl.h \ |
fde8212e RP |
328 | $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \ |
329 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
a26878d1 | 330 | sunos.o : sunos.c aoutf1.h $(INCDIR)/bfd.h $(INCDIR)/obstack.h \ |
fde8212e RP |
331 | libaout.h libbfd.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ |
332 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
12e7087f | 333 | demo64.o : demo64.c |
3b4f1a5d | 334 | |
a26878d1 RP |
335 | srec.o : srec.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h |
336 | oasys.o : oasys.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ | |
337 | $(INCDIR)/oasys.h liboasys.h | |
338 | ieee.o : ieee.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ | |
339 | $(INCDIR)/ieee.h libieee.h | |
3b4f1a5d | 340 | coff-h8300.o: coff-h8300.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
a3b3dbdd ILT |
341 | $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \ |
342 | coffswap.h seclet.h | |
d01cd8fc | 343 | coff-a29k.o: coff-a29k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
a3b3dbdd ILT |
344 | $(INCDIR)/coff/a29k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \ |
345 | coffswap.h seclet.h | |
d01cd8fc | 346 | coff-i386.o: coff-i386.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
a3b3dbdd ILT |
347 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \ |
348 | coffswap.h seclet.h | |
d01cd8fc | 349 | coff-i960.o: coff-i960.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
a3b3dbdd ILT |
350 | $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \ |
351 | coffswap.h seclet.h | |
d01cd8fc | 352 | coff-m68k.o: coff-m68k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
a3b3dbdd ILT |
353 | $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \ |
354 | coffswap.h seclet.h | |
d01cd8fc | 355 | coff-m88k.o: coff-m88k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
a3b3dbdd ILT |
356 | $(INCDIR)/coff/m88k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \ |
357 | coffswap.h seclet.h | |
d01cd8fc | 358 | coff-mips.o: coff-mips.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
a3b3dbdd ILT |
359 | $(INCDIR)/coff/mips.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \ |
360 | coffswap.h seclet.h libecoff.h | |
d01cd8fc | 361 | coff-rs6000.o: coff-rs6000.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
a3b3dbdd ILT |
362 | $(INCDIR)/coff/rs6000.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \ |
363 | coffswap.h seclet.h | |
bf822c27 | 364 | coff-z8k.o: coff-z8k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
a3b3dbdd ILT |
365 | $(INCDIR)/coff/z8k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \ |
366 | coffswap.h seclet.h | |
bf822c27 | 367 | coff-we32k.o: coff-we32k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
a3b3dbdd ILT |
368 | $(INCDIR)/coff/we32k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \ |
369 | coffswap.h seclet.h | |
370 | coffgen.o: coffgen.c $(INCDIR)/bfd.h libbfd.h $(INCDIR)/coff/internal.h \ | |
371 | libcoff.h | |
372 | reloc16.o: reloc16.c $(INCDIR)/bfd.h libbfd.h $(INCDIR)/coff/internal.h \ | |
373 | libcoff.h seclet.h | |
23d44ec9 | 374 | format.o : format.c $(INCDIR)/bfd.h \ |
a26878d1 | 375 | $(INCDIR)/obstack.h libbfd.h |
23d44ec9 | 376 | section.o : section.c $(INCDIR)/bfd.h \ |
a26878d1 | 377 | $(INCDIR)/obstack.h libbfd.h |
23d44ec9 | 378 | core.o : core.c $(INCDIR)/bfd.h \ |
a26878d1 | 379 | $(INCDIR)/obstack.h libbfd.h |
23d44ec9 | 380 | syms.o : syms.c $(INCDIR)/bfd.h \ |
a26878d1 | 381 | $(INCDIR)/obstack.h libbfd.h |
7de245d3 | 382 | syms.o : stab-syms.c |
23d44ec9 | 383 | reloc.o : reloc.c $(INCDIR)/bfd.h \ |
a26878d1 | 384 | $(INCDIR)/obstack.h libbfd.h |
3b4f1a5d | 385 | |
a26878d1 | 386 | trad-core.o : trad-core.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h \ |
12e7087f | 387 | libbfd.h libaout.h |
5868184b FF |
388 | |
389 | coff-msym.o: coff-msym.c $(INCDIR)/bfd.h $(INCDIR)/coff/ecoff-ext.h \ | |
390 | $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h | |
391 | ||
a26878d1 | 392 | newsos3.o : newsos3.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
fde8212e RP |
393 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ |
394 | $(INCDIR)/aout/ar.h libaout.h | |
b7de6963 | 395 | i386aout.o : i386aout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
fde8212e RP |
396 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ |
397 | $(INCDIR)/aout/ar.h libaout.h | |
6bb4c923 KR |
398 | i386linux.o : i386linux.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
399 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
400 | $(INCDIR)/aout/ar.h libaout.h | |
fbee3571 ME |
401 | i386bsd.o : i386bsd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
402 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
403 | $(INCDIR)/aout/ar.h libaout.h | |
a26878d1 | 404 | bout.o : bout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \ |
6bb4c923 KR |
405 | $(INCDIR)/bout.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h |
406 | ||
12e7087f | 407 | # IF YOU PUT ANYTHING HERE IT WILL GO AWAY |
a26878d1 | 408 |