Initial revision
[deliverable/binutils-gdb.git] / bfd / targets.c
CommitLineData
4a81b561
DHW
1/* Copyright (C) 1990, 1991 Free Software Foundation, Inc.
2
3This file is part of BFD, the Binary File Diddler.
4
5BFD is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License as published by
7the Free Software Foundation; either version 1, or (at your option)
8any later version.
9
10BFD is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with BFD; see the file COPYING. If not, write to
17the 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
29extern bfd_target aoutvec;
30extern bfd_target srec_vec;
31extern bfd_target b_out_vec_little_host;
32extern bfd_target b_out_vec_big_host;
33extern bfd_target icoff_little_vec;
34extern bfd_target icoff_big_vec;
35
36
37bfd_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 };
This page took 0.02472 seconds and 4 git commands to generate.