FT32 initial support
[deliverable/binutils-gdb.git] / bfd / Makefile.am
CommitLineData
252b5132 1## Process this file with automake to generate Makefile.in
5bf135a7 2#
b90efa5b 3# Copyright (C) 2012-2015 Free Software Foundation, Inc.
5bf135a7
NC
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 3 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; see the file COPYING3. If not see
17# <http://www.gnu.org/licenses/>.
18#
252b5132 19
95b40122 20AUTOMAKE_OPTIONS = 1.11 no-dist foreign
79887925 21ACLOCAL_AMFLAGS = -I . -I .. -I ../config
252b5132
RH
22
23INCDIR = $(srcdir)/../include
24CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
252b5132
RH
25
26SUBDIRS = doc po
27
108a6f8e 28bfddocdir = doc
252b5132 29
14ec8efd
RW
30libbfd_la_LDFLAGS =
31if INSTALL_LIBBFD
573e8a1c
RW
32bfdlibdir = @bfdlibdir@
33bfdincludedir = @bfdincludedir@
a703a6ea 34bfdlib_LTLIBRARIES = libbfd.la
14ec8efd
RW
35bfdinclude_HEADERS = $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/bfdlink.h
36else !INSTALL_LIBBFD
573e8a1c
RW
37# Empty these so that the respective installation directories will not be created.
38bfdlibdir =
39bfdincludedir =
200c83b8 40bfdinclude_HEADERS =
573e8a1c 41rpath_bfdlibdir = @bfdlibdir@
14ec8efd 42noinst_LTLIBRARIES = libbfd.la
573e8a1c 43libbfd_la_LDFLAGS += -rpath $(rpath_bfdlibdir)
14ec8efd 44endif
252b5132 45
a2d91340 46WARN_CFLAGS = @WARN_CFLAGS@
9e9b66a9 47NO_WERROR = @NO_WERROR@
a2d91340 48AM_CFLAGS = $(WARN_CFLAGS)
ce3c775b
NC
49AM_CPPFLAGS = -DBINDIR='"$(bindir)"'
50if PLUGINS
200c83b8 51bfdinclude_HEADERS += $(INCDIR)/plugin-api.h
3cf9e6c4 52LIBDL = @lt_cv_dlopen_libs@
ce3c775b 53endif
a2d91340 54
252b5132
RH
55# bfd.h goes here, for now
56BFD_H = bfd.h
57
58# Jim Kingdon notes:
59# Writing S-records should be included in all (or at least most)
60# *-*-coff, *-*-aout, etc., configurations, because people will want to
61# be able to use objcopy to create S-records. (S-records are not useful
62# for the debugger, so if you are downloading things as S-records you
63# need two copies of the executable, one to download and one for the
64# debugger).
36b45482 65BFD32_LIBS = \
93509525 66 archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo \
f4943d82
AM
67 cache.lo coff-bfd.lo compress.lo corefile.lo format.lo hash.lo \
68 init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo \
69 section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo \
70 binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
252b5132 71
36b45482
TS
72BFD64_LIBS = archive64.lo
73
74BFD32_LIBS_CFILES = \
93509525 75 archive.c archures.c bfd.c bfdio.c bfdwin.c \
f4943d82
AM
76 cache.c coff-bfd.c compress.c corefile.c format.c hash.c \
77 init.c libbfd.c linker.c merge.c opncls.c reloc.c \
78 section.c simple.c stab-syms.c stabs.c syms.c targets.c \
79 binary.c ihex.c srec.c tekhex.c verilog.c
252b5132 80
36b45482
TS
81BFD64_LIBS_CFILES = archive64.c
82
252b5132
RH
83# This list is alphabetized to make it easier to keep in sync
84# with the decls and initializer in archures.c.
85ALL_MACHINES = \
a06ea964 86 cpu-aarch64.lo \
252b5132
RH
87 cpu-alpha.lo \
88 cpu-arc.lo \
89 cpu-arm.lo \
adde6300 90 cpu-avr.lo \
0f64bb02 91 cpu-bfin.lo \
3d3d428f 92 cpu-cr16.lo \
0949843d 93 cpu-cr16c.lo \
06c15ad7 94 cpu-cris.lo \
1fe1f39c 95 cpu-crx.lo \
252b5132
RH
96 cpu-d10v.lo \
97 cpu-d30v.lo \
d172d4ba 98 cpu-dlx.lo \
cfb8c092 99 cpu-epiphany.lo \
252b5132 100 cpu-fr30.lo \
4e5ba5b7 101 cpu-frv.lo \
3f8107ab 102 cpu-ft32.lo \
252b5132
RH
103 cpu-h8300.lo \
104 cpu-h8500.lo \
105 cpu-hppa.lo \
5b93d8bb 106 cpu-i370.lo \
252b5132 107 cpu-i386.lo \
8a9036a4 108 cpu-l1om.lo \
7a9068fe 109 cpu-k1om.lo \
252b5132
RH
110 cpu-i860.lo \
111 cpu-i960.lo \
ce3c775b 112 cpu-ia64.lo \
cf88bb9f 113 cpu-ip2k.lo \
a75473eb 114 cpu-iq2000.lo \
84e94c90 115 cpu-lm32.lo \
ce3c775b
NC
116 cpu-m10200.lo \
117 cpu-m10300.lo \
49f58d10 118 cpu-m32c.lo \
252b5132 119 cpu-m32r.lo \
60bcf0fa
NC
120 cpu-m68hc11.lo \
121 cpu-m68hc12.lo \
6927f982
NC
122 cpu-m9s12x.lo \
123 cpu-m9s12xg.lo \
252b5132
RH
124 cpu-m68k.lo \
125 cpu-m88k.lo \
252b5132 126 cpu-mcore.lo \
d9352518 127 cpu-mep.lo \
a3c62988 128 cpu-metag.lo \
7ba29e2a 129 cpu-microblaze.lo \
252b5132 130 cpu-mips.lo \
3c3bdf30 131 cpu-mmix.lo \
ce3c775b 132 cpu-moxie.lo \
32d95f29 133 cpu-msp430.lo \
ce3c775b 134 cpu-mt.lo \
35c08157 135 cpu-nds32.lo \
36591ba1 136 cpu-nios2.lo \
252b5132 137 cpu-ns32k.lo \
73589c9d 138 cpu-or1k.lo \
e135f41b 139 cpu-pdp11.lo \
0bcb993b 140 cpu-pj.lo \
ce3c775b 141 cpu-plugin.lo \
252b5132
RH
142 cpu-powerpc.lo \
143 cpu-rs6000.lo \
99c513f6 144 cpu-rl78.lo \
c7927a3c 145 cpu-rx.lo \
a85d7ed0 146 cpu-s390.lo \
1c0d3aa6 147 cpu-score.lo \
252b5132
RH
148 cpu-sh.lo \
149 cpu-sparc.lo \
e9f53129 150 cpu-spu.lo \
252b5132 151 cpu-tic30.lo \
026df7c5 152 cpu-tic4x.lo \
81635ce4 153 cpu-tic54x.lo \
40b36596 154 cpu-tic6x.lo \
252b5132 155 cpu-tic80.lo \
aa137e4d
NC
156 cpu-tilegx.lo \
157 cpu-tilepro.lo \
252b5132 158 cpu-v850.lo \
de863c74 159 cpu-v850_rh850.lo \
252b5132 160 cpu-vax.lo \
d924db55 161 cpu-visium.lo \
252b5132 162 cpu-w65.lo \
ce3c775b
NC
163 cpu-we32k.lo \
164 cpu-xc16x.lo \
a8acc5fb 165 cpu-xgate.lo \
93fbbb04 166 cpu-xstormy16.lo \
e0001a05 167 cpu-xtensa.lo \
3c9b82ba 168 cpu-z80.lo \
252b5132
RH
169 cpu-z8k.lo
170
171ALL_MACHINES_CFILES = \
a06ea964 172 cpu-aarch64.c \
252b5132
RH
173 cpu-alpha.c \
174 cpu-arc.c \
175 cpu-arm.c \
adde6300 176 cpu-avr.c \
0f64bb02 177 cpu-bfin.c \
3d3d428f 178 cpu-cr16.c \
0949843d 179 cpu-cr16c.c \
ce3c775b 180 cpu-cris.c \
1fe1f39c 181 cpu-crx.c \
252b5132
RH
182 cpu-d10v.c \
183 cpu-d30v.c \
d172d4ba 184 cpu-dlx.c \
cfb8c092 185 cpu-epiphany.c \
252b5132 186 cpu-fr30.c \
4e5ba5b7 187 cpu-frv.c \
3f8107ab 188 cpu-ft32.c \
252b5132
RH
189 cpu-h8300.c \
190 cpu-h8500.c \
191 cpu-hppa.c \
5b93d8bb 192 cpu-i370.c \
252b5132 193 cpu-i386.c \
8a9036a4 194 cpu-l1om.c \
7a9068fe 195 cpu-k1om.c \
252b5132
RH
196 cpu-i860.c \
197 cpu-i960.c \
ce3c775b 198 cpu-ia64.c \
cf88bb9f 199 cpu-ip2k.c \
a75473eb 200 cpu-iq2000.c \
84e94c90 201 cpu-lm32.c \
ce3c775b
NC
202 cpu-m10200.c \
203 cpu-m10300.c \
49f58d10 204 cpu-m32c.c \
252b5132 205 cpu-m32r.c \
60bcf0fa
NC
206 cpu-m68hc11.c \
207 cpu-m68hc12.c \
6927f982
NC
208 cpu-m9s12x.c \
209 cpu-m9s12xg.c \
252b5132
RH
210 cpu-m68k.c \
211 cpu-m88k.c \
252b5132 212 cpu-mcore.c \
d9352518 213 cpu-mep.c \
a3c62988 214 cpu-metag.c \
7ba29e2a 215 cpu-microblaze.c \
252b5132 216 cpu-mips.c \
3c3bdf30 217 cpu-mmix.c \
ce3c775b 218 cpu-moxie.c \
2469cfa2 219 cpu-msp430.c \
ce3c775b 220 cpu-mt.c \
35c08157 221 cpu-nds32.c \
252b5132 222 cpu-ns32k.c \
36591ba1 223 cpu-nios2.c \
73589c9d 224 cpu-or1k.c \
e135f41b 225 cpu-pdp11.c \
0bcb993b 226 cpu-pj.c \
ce3c775b 227 cpu-plugin.c \
252b5132
RH
228 cpu-powerpc.c \
229 cpu-rs6000.c \
99c513f6 230 cpu-rl78.c \
c7927a3c 231 cpu-rx.c \
a85d7ed0 232 cpu-s390.c \
1c0d3aa6 233 cpu-score.c \
252b5132
RH
234 cpu-sh.c \
235 cpu-sparc.c \
e9f53129 236 cpu-spu.c \
252b5132 237 cpu-tic30.c \
026df7c5 238 cpu-tic4x.c \
81635ce4 239 cpu-tic54x.c \
40b36596 240 cpu-tic6x.c \
252b5132 241 cpu-tic80.c \
aa137e4d
NC
242 cpu-tilegx.c \
243 cpu-tilepro.c \
252b5132 244 cpu-v850.c \
de863c74 245 cpu-v850_rh850.c \
252b5132 246 cpu-vax.c \
d924db55 247 cpu-visium.c \
252b5132 248 cpu-w65.c \
ce3c775b
NC
249 cpu-we32k.c \
250 cpu-xc16x.c \
a8acc5fb 251 cpu-xgate.c \
93fbbb04 252 cpu-xstormy16.c \
e0001a05 253 cpu-xtensa.c \
3c9b82ba 254 cpu-z80.c \
252b5132
RH
255 cpu-z8k.c
256
257# The .o files needed by all of the 32 bit vectors that are configured into
258# target_vector in targets.c if configured with --enable-targets=all.
259BFD32_BACKENDS = \
260 aout-adobe.lo \
261 aout-arm.lo \
06c15ad7 262 aout-cris.lo \
252b5132
RH
263 aout-ns32k.lo \
264 aout-sparcle.lo \
265 aout-tic30.lo \
266 aout0.lo \
267 aout32.lo \
021e3cc0 268 armnetbsd.lo \
252b5132
RH
269 bout.lo \
270 cf-i386lynx.lo \
252b5132 271 cf-sparclynx.lo \
252b5132
RH
272 coff-apollo.lo \
273 coff-arm.lo \
274 coff-aux.lo \
ce3c775b 275 coff-go32.lo \
252b5132
RH
276 coff-h8300.lo \
277 coff-h8500.lo \
278 coff-i386.lo \
252b5132
RH
279 coff-i860.lo \
280 coff-i960.lo \
281 coff-m68k.lo \
282 coff-m88k.lo \
283 coff-mips.lo \
252b5132
RH
284 coff-rs6000.lo \
285 coff-sh.lo \
286 coff-sparc.lo \
287 coff-stgo32.lo \
288 coff-svm68k.lo \
289 coff-tic30.lo \
026df7c5 290 coff-tic4x.lo \
81635ce4 291 coff-tic54x.lo \
252b5132
RH
292 coff-tic80.lo \
293 coff-u68k.lo \
252b5132 294 coff-w65.lo \
ce3c775b 295 coff-we32k.lo \
3c9b82ba 296 coff-z80.lo \
252b5132 297 coff-z8k.lo \
f4943d82 298 coffgen.lo \
252b5132 299 cofflink.lo \
4a54b465 300 dwarf1.lo \
f4943d82 301 dwarf2.lo \
252b5132
RH
302 ecoff.lo \
303 ecofflink.lo \
ce3c775b
NC
304 elf-attrs.lo \
305 elf-eh-frame.lo \
6de2ae4a 306 elf-ifunc.lo \
ce3c775b
NC
307 elf-m10200.lo \
308 elf-m10300.lo \
5a68afcf 309 elf-nacl.lo \
ce3c775b
NC
310 elf-strtab.lo \
311 elf-vxworks.lo \
252b5132 312 elf.lo \
942e0f42 313 elf32-am33lin.lo \
252b5132 314 elf32-arc.lo \
7f266840 315 elf32-arm.lo \
adde6300 316 elf32-avr.lo \
0f64bb02 317 elf32-bfin.lo \
3d3d428f 318 elf32-cr16.lo \
0949843d 319 elf32-cr16c.lo \
06c15ad7 320 elf32-cris.lo \
1fe1f39c 321 elf32-crx.lo \
252b5132
RH
322 elf32-d10v.lo \
323 elf32-d30v.lo \
d172d4ba 324 elf32-dlx.lo \
cfb8c092 325 elf32-epiphany.lo \
252b5132 326 elf32-fr30.lo \
4e5ba5b7 327 elf32-frv.lo \
3f8107ab 328 elf32-ft32.lo \
252b5132 329 elf32-gen.lo \
ee8a3a3b 330 elf32-h8300.lo \
e0afaebd 331 elf32-hppa.lo \
5b93d8bb 332 elf32-i370.lo \
252b5132
RH
333 elf32-i386.lo \
334 elf32-i860.lo \
b2ef150d 335 elf32-i960.lo \
58378160 336 elf32-ip2k.lo \
a75473eb 337 elf32-iq2000.lo \
84e94c90 338 elf32-lm32.lo \
49f58d10 339 elf32-m32c.lo \
252b5132 340 elf32-m32r.lo \
60bcf0fa
NC
341 elf32-m68hc11.lo \
342 elf32-m68hc12.lo \
f5a6f915 343 elf32-m68hc1x.lo \
252b5132
RH
344 elf32-m68k.lo \
345 elf32-m88k.lo \
252b5132 346 elf32-mcore.lo \
d9352518 347 elf32-mep.lo \
a3c62988 348 elf32-metag.lo \
7ba29e2a 349 elf32-microblaze.lo \
ce3c775b 350 elf32-moxie.lo \
32d95f29 351 elf32-msp430.lo \
ce3c775b 352 elf32-mt.lo \
35c08157 353 elf32-nds32.lo \
36591ba1 354 elf32-nios2.lo \
73589c9d 355 elf32-or1k.lo \
0bcb993b 356 elf32-pj.lo \
252b5132 357 elf32-ppc.lo \
99c513f6 358 elf32-rl78.lo \
c7927a3c 359 elf32-rx.lo \
a85d7ed0 360 elf32-s390.lo \
85fbca6a 361 elf32-sh-symbian.lo \
ce3c775b 362 elf32-sh.lo \
9cba27b2 363 elf32-sh64-com.lo \
ce3c775b 364 elf32-sh64.lo \
252b5132 365 elf32-sparc.lo \
e9f53129 366 elf32-spu.lo \
40b36596 367 elf32-tic6x.lo \
aa137e4d
NC
368 elf32-tilegx.lo \
369 elf32-tilepro.lo \
252b5132 370 elf32-v850.lo \
90ace9e9 371 elf32-vax.lo \
d924db55 372 elf32-visium.lo \
ce3c775b 373 elf32-xc16x.lo \
a8acc5fb 374 elf32-xgate.lo \
93fbbb04 375 elf32-xstormy16.lo \
e0001a05 376 elf32-xtensa.lo \
252b5132
RH
377 elf32.lo \
378 elflink.lo \
ce3c775b 379 elfxx-sparc.lo \
aa137e4d 380 elfxx-tilegx.lo \
10ab5357
NC
381 epoc-pe-arm.lo \
382 epoc-pei-arm.lo \
252b5132
RH
383 hp300bsd.lo \
384 hp300hpux.lo \
252b5132
RH
385 i386aout.lo \
386 i386bsd.lo \
387 i386dynix.lo \
388 i386freebsd.lo \
389 i386linux.lo \
390 i386lynx.lo \
ce3c775b 391 i386mach3.lo \
252b5132
RH
392 i386msdos.lo \
393 i386netbsd.lo \
252b5132
RH
394 i386os9k.lo \
395 ieee.lo \
396 m68k4knetbsd.lo \
397 m68klinux.lo \
252b5132
RH
398 m68knetbsd.lo \
399 m88kmach3.lo \
c6f8758f 400 m88kopenbsd.lo \
3af9a47b 401 mach-o.lo \
9e93c730 402 mach-o-i386.lo \
252b5132
RH
403 mipsbsd.lo \
404 newsos3.lo \
405 nlm.lo \
406 nlm32-i386.lo \
252b5132 407 nlm32-ppc.lo \
ce3c775b 408 nlm32-sparc.lo \
252b5132
RH
409 nlm32.lo \
410 ns32knetbsd.lo \
411 oasys.lo \
412 pc532-mach.lo \
e135f41b 413 pdp11.lo \
7148cc28 414 pe-arm-wince.lo \
ce3c775b 415 pe-arm.lo \
252b5132 416 pe-i386.lo \
252b5132 417 pe-mcore.lo \
ce3c775b 418 pe-mips.lo \
252b5132 419 pe-ppc.lo \
17505c5c 420 pe-sh.lo \
ce3c775b
NC
421 pef.lo \
422 pei-arm-wince.lo \
423 pei-arm.lo \
424 pei-i386.lo \
425 pei-mcore.lo \
17505c5c 426 pei-mips.lo \
ce3c775b
NC
427 pei-ppc.lo \
428 pei-sh.lo \
277d1b5e 429 peigen.lo \
ce3c775b 430 plugin.lo \
252b5132
RH
431 ppcboot.lo \
432 reloc16.lo \
433 riscix.lo \
ce3c775b 434 som.lo \
252b5132
RH
435 sparclinux.lo \
436 sparclynx.lo \
437 sparcnetbsd.lo \
438 sunos.lo \
3c2bfad6 439 vax1knetbsd.lo \
ba26fd96 440 vaxbsd.lo \
ce3c775b 441 vaxnetbsd.lo \
252b5132 442 versados.lo \
4b544b64 443 vms-lib.lo \
252b5132 444 vms-misc.lo \
3af9a47b 445 xcofflink.lo \
e0001a05
NC
446 xsym.lo \
447 xtensa-isa.lo \
448 xtensa-modules.lo
252b5132
RH
449
450BFD32_BACKENDS_CFILES = \
451 aout-adobe.c \
452 aout-arm.c \
06c15ad7 453 aout-cris.c \
252b5132
RH
454 aout-ns32k.c \
455 aout-sparcle.c \
456 aout-tic30.c \
457 aout0.c \
458 aout32.c \
021e3cc0 459 armnetbsd.c \
252b5132
RH
460 bout.c \
461 cf-i386lynx.c \
252b5132 462 cf-sparclynx.c \
252b5132
RH
463 coff-apollo.c \
464 coff-arm.c \
465 coff-aux.c \
ce3c775b 466 coff-go32.c \
252b5132
RH
467 coff-h8300.c \
468 coff-h8500.c \
469 coff-i386.c \
470 coff-i860.c \
252b5132
RH
471 coff-i960.c \
472 coff-m68k.c \
473 coff-m88k.c \
474 coff-mips.c \
252b5132
RH
475 coff-rs6000.c \
476 coff-sh.c \
477 coff-sparc.c \
478 coff-stgo32.c \
479 coff-svm68k.c \
480 coff-tic30.c \
026df7c5 481 coff-tic4x.c \
81635ce4 482 coff-tic54x.c \
252b5132
RH
483 coff-tic80.c \
484 coff-u68k.c \
252b5132 485 coff-w65.c \
ce3c775b 486 coff-we32k.c \
3c9b82ba 487 coff-z80.c \
252b5132 488 coff-z8k.c \
f4943d82 489 coffgen.c \
252b5132 490 cofflink.c \
4a54b465 491 dwarf1.c \
f4943d82 492 dwarf2.c \
252b5132
RH
493 ecoff.c \
494 ecofflink.c \
ce3c775b
NC
495 elf-attrs.c \
496 elf-eh-frame.c \
6de2ae4a 497 elf-ifunc.c \
ce3c775b
NC
498 elf-m10200.c \
499 elf-m10300.c \
5a68afcf 500 elf-nacl.c \
ce3c775b
NC
501 elf-strtab.c \
502 elf-vxworks.c \
252b5132 503 elf.c \
942e0f42 504 elf32-am33lin.c \
252b5132 505 elf32-arc.c \
7f266840 506 elf32-arm.c \
adde6300 507 elf32-avr.c \
0f64bb02 508 elf32-bfin.c \
3d3d428f 509 elf32-cr16.c \
0949843d 510 elf32-cr16c.c \
06c15ad7 511 elf32-cris.c \
1fe1f39c 512 elf32-crx.c \
252b5132
RH
513 elf32-d10v.c \
514 elf32-d30v.c \
d172d4ba 515 elf32-dlx.c \
cfb8c092 516 elf32-epiphany.c \
252b5132 517 elf32-fr30.c \
4e5ba5b7 518 elf32-frv.c \
3f8107ab 519 elf32-ft32.c \
252b5132 520 elf32-gen.c \
ee8a3a3b 521 elf32-h8300.c \
3f9b03b5 522 elf32-hppa.c \
5b93d8bb 523 elf32-i370.c \
252b5132
RH
524 elf32-i386.c \
525 elf32-i860.c \
b2ef150d 526 elf32-i960.c \
cf88bb9f 527 elf32-ip2k.c \
a75473eb 528 elf32-iq2000.c \
84e94c90 529 elf32-lm32.c \
49f58d10 530 elf32-m32c.c \
252b5132 531 elf32-m32r.c \
60bcf0fa
NC
532 elf32-m68hc11.c \
533 elf32-m68hc12.c \
f5a6f915 534 elf32-m68hc1x.c \
ce3c775b 535 elf32-m68k.c \
252b5132 536 elf32-m88k.c \
252b5132 537 elf32-mcore.c \
d9352518 538 elf32-mep.c \
a3c62988 539 elf32-metag.c \
7ba29e2a 540 elf32-microblaze.c \
ce3c775b 541 elf32-moxie.c \
2469cfa2 542 elf32-msp430.c \
ce3c775b 543 elf32-mt.c \
35c08157 544 elf32-nds32.c \
36591ba1 545 elf32-nios2.c \
73589c9d 546 elf32-or1k.c \
0bcb993b 547 elf32-pj.c \
252b5132 548 elf32-ppc.c \
99c513f6 549 elf32-rl78.c \
c7927a3c 550 elf32-rx.c \
a85d7ed0 551 elf32-s390.c \
85fbca6a 552 elf32-sh-symbian.c \
ce3c775b
NC
553 elf32-sh.c \
554 elf32-sh64-com.c \
555 elf32-sh64.c \
252b5132 556 elf32-sparc.c \
e9f53129 557 elf32-spu.c \
40b36596 558 elf32-tic6x.c \
aa137e4d
NC
559 elf32-tilegx.c \
560 elf32-tilepro.c \
252b5132 561 elf32-v850.c \
90ace9e9 562 elf32-vax.c \
d924db55 563 elf32-visium.c \
ce3c775b 564 elf32-xc16x.c \
a8acc5fb 565 elf32-xgate.c \
93fbbb04 566 elf32-xstormy16.c \
e0001a05 567 elf32-xtensa.c \
252b5132
RH
568 elf32.c \
569 elflink.c \
ce3c775b 570 elfxx-sparc.c \
aa137e4d 571 elfxx-tilegx.c \
10ab5357
NC
572 epoc-pe-arm.c \
573 epoc-pei-arm.c \
252b5132
RH
574 hp300bsd.c \
575 hp300hpux.c \
252b5132
RH
576 i386aout.c \
577 i386bsd.c \
578 i386dynix.c \
579 i386freebsd.c \
580 i386linux.c \
581 i386lynx.c \
ce3c775b 582 i386mach3.c \
252b5132
RH
583 i386msdos.c \
584 i386netbsd.c \
252b5132
RH
585 i386os9k.c \
586 ieee.c \
587 m68k4knetbsd.c \
588 m68klinux.c \
252b5132
RH
589 m68knetbsd.c \
590 m88kmach3.c \
c6f8758f 591 m88kopenbsd.c \
3af9a47b 592 mach-o.c \
9e93c730 593 mach-o-i386.c \
252b5132
RH
594 mipsbsd.c \
595 newsos3.c \
596 nlm.c \
597 nlm32-i386.c \
252b5132 598 nlm32-ppc.c \
ce3c775b 599 nlm32-sparc.c \
252b5132
RH
600 nlm32.c \
601 ns32knetbsd.c \
602 oasys.c \
603 pc532-mach.c \
e135f41b 604 pdp11.c \
7148cc28 605 pe-arm-wince.c \
ce3c775b 606 pe-arm.c \
252b5132 607 pe-i386.c \
252b5132 608 pe-mcore.c \
ce3c775b 609 pe-mips.c \
252b5132 610 pe-ppc.c \
17505c5c 611 pe-sh.c \
ce3c775b
NC
612 pef.c \
613 pei-arm-wince.c \
614 pei-arm.c \
615 pei-i386.c \
616 pei-mcore.c \
17505c5c 617 pei-mips.c \
ce3c775b
NC
618 pei-ppc.c \
619 pei-sh.c \
620 plugin.c \
252b5132
RH
621 ppcboot.c \
622 reloc16.c \
623 riscix.c \
ce3c775b 624 som.c \
252b5132
RH
625 sparclinux.c \
626 sparclynx.c \
627 sparcnetbsd.c \
628 sunos.c \
3c2bfad6 629 vax1knetbsd.c \
ba26fd96 630 vaxbsd.c \
ce3c775b 631 vaxnetbsd.c \
252b5132 632 versados.c \
4b544b64 633 vms-lib.c \
252b5132 634 vms-misc.c \
3af9a47b 635 xcofflink.c \
e0001a05
NC
636 xsym.c \
637 xtensa-isa.c \
638 xtensa-modules.c
252b5132
RH
639
640# The .o files needed by all of the 64 bit vectors that are configured into
641# target_vector in targets.c if configured with --enable-targets=all
642# and --enable-64-bit-bfd.
074d327a
NC
643# elf32-ia64.c requires a 64-bit bfd_vma, and hence can not be put in
644# BFD32_BACKENDS.
252b5132 645BFD64_BACKENDS = \
cec5225b 646 elf32-aarch64.lo \
a06ea964 647 elf64-aarch64.lo \
caed7120 648 elfxx-aarch64.lo \
eb1e0e80 649 aix5ppc-core.lo \
252b5132
RH
650 aout64.lo \
651 coff-alpha.lo \
ce3c775b 652 coff-x86_64.lo \
14958a43 653 coff64-rs6000.lo \
252b5132 654 demo64.lo \
ce3c775b 655 elf32-ia64.lo \
42429eac 656 elf32-mips.lo \
ce3c775b
NC
657 elf32-score.lo \
658 elf32-score7.lo \
252b5132 659 elf64-alpha.lo \
ce3c775b 660 elf64-gen.lo \
d403336c 661 elf64-hppa.lo \
800eeca4 662 elf64-ia64.lo \
202e2356 663 elf64-ia64-vms.lo \
252b5132 664 elf64-mips.lo \
3c3bdf30 665 elf64-mmix.lo \
5bd4f169 666 elf64-ppc.lo \
a85d7ed0 667 elf64-s390.lo \
ce3c775b 668 elf64-sh64.lo \
252b5132 669 elf64-sparc.lo \
1e24d83c 670 elf64-tilegx.lo \
ce3c775b 671 elf64-x86-64.lo \
252b5132 672 elf64.lo \
ce3c775b 673 elfn32-mips.lo \
cbe79dfe 674 elfxx-ia64.lo \
42429eac 675 elfxx-mips.lo \
618b7301 676 mach-o-x86-64.lo \
3c3bdf30 677 mmo.lo \
252b5132 678 nlm32-alpha.lo \
825b47db 679 nlm64.lo \
99ad8390 680 pe-x86_64.lo \
ce3c775b 681 pei-ia64.lo \
99ad8390
NC
682 pei-x86_64.lo \
683 pepigen.lo \
24df9a51
TG
684 pex64igen.lo \
685 vms-alpha.lo
252b5132
RH
686
687BFD64_BACKENDS_CFILES = \
eb1e0e80 688 aix5ppc-core.c \
252b5132
RH
689 aout64.c \
690 coff-alpha.c \
ce3c775b 691 coff-x86_64.c \
14958a43 692 coff64-rs6000.c \
252b5132 693 demo64.c \
42429eac 694 elf32-mips.c \
ce3c775b
NC
695 elf32-score.c \
696 elf32-score7.c \
252b5132
RH
697 elf64-alpha.c \
698 elf64-gen.c \
ce3c775b 699 elf64-hppa.c \
202e2356 700 elf64-ia64-vms.c \
252b5132 701 elf64-mips.c \
3c3bdf30 702 elf64-mmix.c \
5bd4f169 703 elf64-ppc.c \
a85d7ed0 704 elf64-s390.c \
fbca6ad9 705 elf64-sh64.c \
252b5132 706 elf64-sparc.c \
aa137e4d 707 elf64-tilegx.c \
ce3c775b 708 elf64-x86-64.c \
252b5132 709 elf64.c \
ce3c775b 710 elfn32-mips.c \
caed7120 711 elfxx-aarch64.c \
cbe79dfe 712 elfxx-ia64.c \
42429eac 713 elfxx-mips.c \
618b7301 714 mach-o-x86-64.c \
3c3bdf30 715 mmo.c \
252b5132 716 nlm32-alpha.c \
99ad8390 717 nlm64.c \
99ad8390 718 pe-x86_64.c \
ce3c775b 719 pei-ia64.c \
24df9a51
TG
720 pei-x86_64.c \
721 vms-alpha.c
252b5132
RH
722
723OPTIONAL_BACKENDS = \
724 aix386-core.lo \
ce3c775b 725 cisco-core.lo \
252b5132
RH
726 hpux-core.lo \
727 irix-core.lo \
728 lynx-core.lo \
729 osf-core.lo \
c09a7c7e 730 rs6000-core.lo \
252b5132 731 sco5-core.lo \
ce3c775b 732 trad-core.lo
252b5132
RH
733
734OPTIONAL_BACKENDS_CFILES = \
735 aix386-core.c \
ce3c775b 736 cisco-core.c \
252b5132
RH
737 hpux-core.c \
738 irix-core.c \
739 lynx-core.c \
740 osf-core.c \
c09a7c7e 741 rs6000-core.c \
252b5132 742 sco5-core.c \
ce3c775b 743 trad-core.c
252b5132 744
82b57a90
AM
745# Reconfigure if config.bfd or configure.host changes.
746# development.sh is used to determine -Werror default.
3f85e526 747CONFIG_STATUS_DEPENDENCIES = \
3f85e526 748 $(srcdir)/config.bfd \
270c9937
JB
749 $(srcdir)/configure.host \
750 $(srcdir)/development.sh
3f85e526 751
1110793a 752# These are defined by configure:
252b5132
RH
753WORDSIZE = @wordsize@
754ALL_BACKENDS = @all_backends@
755BFD_BACKENDS = @bfd_backends@
756BFD_MACHINES = @bfd_machines@
757TDEFAULTS = @tdefaults@
7256a114 758HAVEVECS = @havevecs@
252b5132 759
7256a114
TG
760INCLUDES = @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) \
761 $(HAVEVECS) @INCINTL@
252b5132
RH
762
763# C source files that correspond to .o's.
27b7e12d 764SOURCE_CFILES = \
36b45482
TS
765 $(BFD32_LIBS_CFILES) \
766 $(BFD64_LIBS_CFILES) \
252b5132
RH
767 $(ALL_MACHINES_CFILES) \
768 $(BFD32_BACKENDS_CFILES) \
769 $(BFD64_BACKENDS_CFILES) \
770 $(OPTIONAL_BACKENDS_CFILES)
771
55c80943 772BUILD_CFILES = \
cec5225b 773 elf32-aarch64.c elf64-aarch64.c \
99ad8390 774 elf32-ia64.c elf64-ia64.c peigen.c pepigen.c pex64igen.c
27b7e12d 775
55c80943
NC
776CFILES = $(SOURCE_CFILES) $(BUILD_CFILES)
777
252b5132
RH
778## This is a list of all .h files which are in the source tree.
779SOURCE_HFILES = \
709d67f1 780 aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h ecoffswap.h \
37ba9f93 781 elf-bfd.h elf-hppa.h elf-linux-psinfo.h elf32-hppa.h \
c152c796 782 elf64-hppa.h elfcode.h elfcore.h \
2bc3c89a
AM
783 freebsd.h genlink.h go32stub.h \
784 libaout.h libbfd.h libcoff.h libecoff.h libhppa.h libieee.h \
3af9a47b 785 libnlm.h liboasys.h libpei.h libxcoff.h mach-o.h \
2bc3c89a 786 netbsd.h nlm-target.h nlmcode.h nlmswap.h ns32k.h \
3af9a47b 787 pef.h pef-traceback.h peicode.h som.h version.h \
33b54431 788 vms.h xsym.h
252b5132 789
55c80943
NC
790## ... and all .h files which are in the build tree.
791BUILD_HFILES = \
5eda1c47 792 bfdver.h elf32-target.h elf64-target.h targmatch.h bfd_stdint.h
55c80943 793
95b40122
RW
794# Ensure they are built early:
795BUILT_SOURCES = $(BUILD_HFILES)
796
55c80943
NC
797HFILES = $(SOURCE_HFILES) $(BUILD_HFILES)
798
799SRC_POTFILES = $(SOURCE_CFILES) $(SOURCE_HFILES)
800BLD_POTFILES = $(BUILD_CFILES) $(BUILD_HFILES)
252b5132 801
55c80943 802po/SRC-POTFILES.in: @MAINT@ Makefile $(SRC_POTFILES)
fdc09da8 803 for file in $(SRC_POTFILES); do echo $$file; done \
323ee3f4 804 | LC_ALL=C sort > tmp.src \
01467f2a 805 && mv tmp.src $(srcdir)/po/SRC-POTFILES.in
55c80943
NC
806
807po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES)
fdc09da8 808 for file in $(BLD_POTFILES); do echo $$file; done \
323ee3f4 809 | LC_ALL=C sort > tmp.bld \
01467f2a 810 && mv tmp.bld $(srcdir)/po/BLD-POTFILES.in
55c80943 811
e3e71e27 812all diststuff: info
252b5132
RH
813
814# Various kinds of .o files to put in libbfd.a:
815# BFD_BACKENDS Routines the configured targets need.
816# BFD_MACHINES Architecture-specific routines the configured targets need.
817# COREFILE Core file routines for a native configuration
21e40a48
L
818# bfd64_libs Routines for 64bit support
819OFILES = $(BFD_BACKENDS) $(BFD_MACHINES) @COREFILE@ @bfd64_libs@
252b5132
RH
820
821stamp-ofiles: Makefile
822 rm -f tofiles
823 f=""; \
824 for i in $(OFILES) ; do \
825 case " $$f " in \
826 *" $$i "*) ;; \
827 *) f="$$f $$i" ;; \
828 esac ; \
829 done ; \
830 echo $$f > tofiles
831 $(SHELL) $(srcdir)/../move-if-change tofiles ofiles
832 touch stamp-ofiles
833
834ofiles: stamp-ofiles ; @true
835
21e40a48
L
836# Since BFD64_LIBS is optional and we can't have substitution in
837# libbfd_la_SOURCES, we put BFD64_LIBS in OFILES instead.
95b40122
RW
838# However, list all sources in EXTRA_libbfd_la_SOURCES so the
839# dependency tracking fragments are picked up in the Makefile.
21e40a48 840libbfd_la_SOURCES = $(BFD32_LIBS_CFILES)
95b40122 841EXTRA_libbfd_la_SOURCES = $(CFILES)
252b5132 842libbfd_la_DEPENDENCIES = $(OFILES) ofiles
ce3c775b 843libbfd_la_LIBADD = `cat ofiles` @SHARED_LIBADD@ $(LIBDL)
14ec8efd 844libbfd_la_LDFLAGS += -release `cat libtool-soversion` @SHARED_LDFLAGS@
252b5132
RH
845
846# libtool will build .libs/libbfd.a. We create libbfd.a in the build
847# directory so that we don't have to convert all the programs that use
848# libbfd.a simultaneously. This is a hack which should be removed if
849# everything else starts using libtool. FIXME.
850
851noinst_LIBRARIES = libbfd.a
852libbfd_a_SOURCES =
853
854stamp-lib: libbfd.la
e56f75e9
ILT
855 libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
856 if [ -f $$libtooldir/libbfd.a ]; then \
857 cp $$libtooldir/libbfd.a libbfd.tmp; \
9f93bca5 858 $(RANLIB) libbfd.tmp; \
252b5132
RH
859 $(SHELL) $(srcdir)/../move-if-change libbfd.tmp libbfd.a; \
860 else true; fi
861 touch stamp-lib
862
863libbfd.a: stamp-lib ; @true
864
865# This file holds an array associating configuration triplets and
866# vector names. It is built from config.bfd. It is not compiled by
867# itself, but is included by targets.c.
868targmatch.h: config.bfd targmatch.sed
869 rm -f targmatch.h
870 sed -f $(srcdir)/targmatch.sed < $(srcdir)/config.bfd > targmatch.new
871 mv -f targmatch.new targmatch.h
872
873# When compiling archures.c and targets.c, supply the default target
874# info from configure.
875
840f0243 876targets.lo: targets.c Makefile
95b40122
RW
877if am__fastdepCC
878 $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(TDEFAULTS) $(srcdir)/targets.c
879 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
880else
881if AMDEP
882 source='targets.c' object='$@' libtool=yes @AMDEPBACKSLASH@
883 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
884endif
885 $(LTCOMPILE) -c -o $@ $(TDEFAULTS) $(srcdir)/targets.c
886endif
252b5132 887
840f0243 888archures.lo: archures.c Makefile
95b40122
RW
889if am__fastdepCC
890 $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(TDEFAULTS) $(srcdir)/archures.c
891 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
892else
893if AMDEP
894 source='archures.c' object='$@' libtool=yes @AMDEPBACKSLASH@
895 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
896endif
897 $(LTCOMPILE) -c -o $@ $(TDEFAULTS) $(srcdir)/archures.c
898endif
252b5132 899
0d4a1476 900dwarf2.lo: dwarf2.c Makefile
95b40122
RW
901if am__fastdepCC
902 $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ -DDEBUGDIR=\"$(DEBUGDIR)\" $(srcdir)/dwarf2.c
903 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
904else
905if AMDEP
906 source='dwarf2.c' object='$@' libtool=yes @AMDEPBACKSLASH@
907 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
908endif
909 $(LTCOMPILE) -c -o $@ -DDEBUGDIR=\"$(DEBUGDIR)\" $(srcdir)/dwarf2.c
910endif
0d4a1476 911
252b5132
RH
912elf32-target.h : elfxx-target.h
913 rm -f elf32-target.h
914 sed -e s/NN/32/g < $(srcdir)/elfxx-target.h > elf32-target.new
915 mv -f elf32-target.new elf32-target.h
916
917elf64-target.h : elfxx-target.h
918 rm -f elf64-target.h
919 sed -e s/NN/64/g < $(srcdir)/elfxx-target.h > elf64-target.new
920 mv -f elf64-target.new elf64-target.h
921
cec5225b
YZ
922elf32-aarch64.c : elfnn-aarch64.c
923 rm -f elf32-aarch64.c
2d426575
YZ
924 echo "#line 1 \"$(srcdir)/elfnn-aarch64.c\"" > elf32-aarch64.new
925 sed -e s/NN/32/g < $(srcdir)/elfnn-aarch64.c >> elf32-aarch64.new
cec5225b
YZ
926 mv -f elf32-aarch64.new elf32-aarch64.c
927
81197114
YZ
928elf64-aarch64.c : elfnn-aarch64.c
929 rm -f elf64-aarch64.c
2d426575
YZ
930 echo "#line 1 \"$(srcdir)/elfnn-aarch64.c\"" > elf64-aarch64.new
931 sed -e s/NN/64/g < $(srcdir)/elfnn-aarch64.c >> elf64-aarch64.new
81197114
YZ
932 mv -f elf64-aarch64.new elf64-aarch64.c
933
cbe79dfe 934elf32-ia64.c : elfnn-ia64.c
bbe66d08 935 rm -f elf32-ia64.c
cbe79dfe 936 sed -e s/NN/32/g < $(srcdir)/elfnn-ia64.c > elf32-ia64.new
bbe66d08
JW
937 mv -f elf32-ia64.new elf32-ia64.c
938
cbe79dfe 939elf64-ia64.c : elfnn-ia64.c
bbe66d08 940 rm -f elf64-ia64.c
cbe79dfe 941 sed -e s/NN/64/g < $(srcdir)/elfnn-ia64.c > elf64-ia64.new
bbe66d08
JW
942 mv -f elf64-ia64.new elf64-ia64.c
943
825b47db
NC
944peigen.c : peXXigen.c
945 rm -f peigen.c
946 sed -e s/XX/pe/g < $(srcdir)/peXXigen.c > peigen.new
947 mv -f peigen.new peigen.c
948
949pepigen.c : peXXigen.c
950 rm -f pepigen.c
951 sed -e s/XX/pep/g < $(srcdir)/peXXigen.c > pepigen.new
952 mv -f pepigen.new pepigen.c
953
99ad8390
NC
954pex64igen.c: peXXigen.c
955 rm -f pex64igen.c
956 sed -e s/XX/pex64/g < $(srcdir)/peXXigen.c > pex64igen.new
957 mv -f pex64igen.new pex64igen.c
958
b13c7b49 959BFD_H_DEPS= $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
252b5132 960LOCAL_H_DEPS= libbfd.h sysdep.h config.h
36b45482
TS
961$(BFD32_LIBS) \
962 $(BFD64_LIBS) \
b13c7b49
AM
963 $(ALL_MACHINES) \
964 $(BFD32_BACKENDS) \
965 $(BFD64_BACKENDS) \
966 $(OPTIONAL_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
252b5132 967
252b5132
RH
968host-aout.lo: Makefile
969
970# The following program can be used to generate a simple config file
971# which can be folded into an h-XXX file for a new host, with some editing.
972aout-params.h: gen-aout
973 ./gen-aout host > aout-params.h
974gen-aout: $(srcdir)/gen-aout.c Makefile
975 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
976
977$(BFD_H): stmp-bfd-h ; @true
978
979stmp-bfd-h: bfd-in3.h
980 rm -f bfd-tmp.h
981 cp bfd-in3.h bfd-tmp.h
982 $(SHELL) $(srcdir)/../move-if-change bfd-tmp.h $(BFD_H)
983 rm -f bfd-tmp.h
984 touch stmp-bfd-h
985
986BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c \
93509525 987 reloc.c syms.c bfd.c bfdio.c bfdwin.c \
1b315056 988 archive.c corefile.c targets.c format.c compress.c
36b45482 989BFD64_H_FILES = archive64.c
93509525
KD
990LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c bfdio.c bfdwin.c \
991 cache.c reloc.c archures.c elf.c
252b5132
RH
992LIBCOFF_H_FILES = libcoff-in.h coffcode.h
993
994# Could really use a "copy-if-change"...
995headers:
108a6f8e
CD
996 (cd $(bfddocdir); $(MAKE) protos $(FLAGS_TO_PASS))
997 cp $(bfddocdir)/bfd.h bfd-in2.h-new
252b5132 998 $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
108a6f8e 999 cp $(bfddocdir)/libbfd.h libbfd.h-new
252b5132 1000 $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
108a6f8e 1001 cp $(bfddocdir)/libcoff.h libcoff.h-new
252b5132
RH
1002 $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
1003
1004# We only rebuild the header files automatically if we have been
1005# configured with --enable-maintainer-mode.
1006
1007$(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true
36b45482 1008stmp-bin2-h: $(BFD_H_FILES) $(BFD64_H_FILES)
108a6f8e
CD
1009 (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) bfd.h)
1010 cp $(bfddocdir)/bfd.h bfd-in2.h-new
252b5132
RH
1011 $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
1012 touch stmp-bin2-h
1013
1014$(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true
1015stmp-lbfd-h: $(LIBBFD_H_FILES)
108a6f8e
CD
1016 (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) libbfd.h)
1017 cp $(bfddocdir)/libbfd.h libbfd.h-new
252b5132
RH
1018 $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
1019 touch stmp-lbfd-h
1020
1021$(srcdir)/libcoff.h: @MAINT@ stmp-lcoff-h ; @true
1022stmp-lcoff-h: $(LIBCOFF_H_FILES)
108a6f8e
CD
1023 (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) libcoff.h)
1024 cp $(bfddocdir)/libcoff.h libcoff.h-new
252b5132
RH
1025 $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
1026 touch stmp-lcoff-h
1027
55c80943 1028MOSTLYCLEANFILES = ofiles stamp-ofiles
252b5132 1029
0bdaf48b 1030CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a stamp-lib \
252b5132
RH
1031 stmp-bin2-h stmp-lbfd-h stmp-lcoff-h
1032
ee5c21a0 1033DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES) libtool-soversion
55c80943 1034
2e98a7bd 1035bfdver.h: $(srcdir)/version.h $(srcdir)/development.sh $(srcdir)/Makefile.in
91506736 1036 @echo "creating $@"
bc286f95
BE
1037 @bfd_version=`echo "$(VERSION)" | sed -e 's/\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\).*/\1.00\2.00\3.00\4.00\5/' -e 's/\([^\.]*\)\..*\(..\)\..*\(..\)\..*\(..\)\..*\(..\)$$/\1\2\3\4\5/'` ;\
1038 bfd_version_string="\"$(VERSION)\"" ;\
ee5c21a0 1039 bfd_soversion="$(VERSION)" ;\
92f01d61 1040 bfd_version_package="\"$(PKGVERSION)\"" ;\
c428fa83 1041 report_bugs_to="\"$(REPORT_BUGS_TO)\"" ;\
2e98a7bd
AM
1042 . $(srcdir)/development.sh ;\
1043 if test "$$development" = true ; then \
d866f350 1044 bfd_version_date=`sed -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\
066c2a57 1045 bfd_version_string="\"$(VERSION).$${bfd_version_date}\"" ;\
ee5c21a0 1046 bfd_soversion="$(VERSION).$${bfd_version_date}" ;\
bc286f95 1047 fi ;\
c428fa83
L
1048 sed -e "s,@bfd_version@,$$bfd_version," \
1049 -e "s,@bfd_version_string@,$$bfd_version_string," \
1050 -e "s,@bfd_version_package@,$$bfd_version_package," \
1051 -e "s,@report_bugs_to@,$$report_bugs_to," \
ee5c21a0
DJ
1052 < $(srcdir)/version.h > $@; \
1053 echo "$${bfd_soversion}" > libtool-soversion
a7e31171
L
1054
1055# Disable -Werror, if it has been enabled, since coffswap.h won't
1056# compile with gcc 4.5 and above.
1057coff-tic4x.lo: coff-tic4x.c
1058@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< $(NO_WERROR)
1059@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1060@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1061@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1062@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< $(NO_WERROR)
1063
1064coff-tic54x.lo: coff-tic54x.c
1065@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< $(NO_WERROR)
1066@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1067@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1068@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1069@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< $(NO_WERROR)
This page took 1.137205 seconds and 4 git commands to generate.