Initial revision
[binutils-gdb.git] / bfd / targets.c
1 /* Copyright (C) 1990, 1991 Free Software Foundation, Inc.
2
3 This file is part of BFD, the Binary File Diddler.
4
5 BFD 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 1, or (at your option)
8 any later version.
9
10 BFD 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 BFD; see the file COPYING. If not, write to
17 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
18
19 /* $Id$ */
20
21
22 /* This -*- C -*- source file will someday be machine-generated */
23
24 /*** Defines the target vector through which operations dispatch */
25 #include "sysdep.h"
26 #include "bfd.h"
27 #include "libbfd.h"
28
29 extern bfd_target aoutvec;
30 extern bfd_target srec_vec;
31 extern bfd_target b_out_vec_little_host;
32 extern bfd_target b_out_vec_big_host;
33 extern bfd_target icoff_little_vec;
34 extern bfd_target icoff_big_vec;
35
36
37 bfd_target *target_vector[] =
38 {
39 #ifndef INTEL960VERSION
40 &aoutvec,
41 &srec_vec,
42
43 #endif /* INTEL960VERSION */
44 &icoff_big_vec,
45 &icoff_little_vec,
46 &b_out_vec_big_host,
47 &b_out_vec_little_host,
48
49 NULL
50 };