1179404Sobrien/* BFD back-end for MIPS PE IMAGE COFF files.
2218822Sdim   Copyright 1995, 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
3179404Sobrien
4179404SobrienThis file is part of BFD, the Binary File Descriptor library.
5179404Sobrien
6179404SobrienThis program is free software; you can redistribute it and/or modify
7179404Sobrienit under the terms of the GNU General Public License as published by
8179404Sobrienthe Free Software Foundation; either version 2 of the License, or
9179404Sobrien(at your option) any later version.
10179404Sobrien
11179404SobrienThis program is distributed in the hope that it will be useful,
12179404Sobrienbut WITHOUT ANY WARRANTY; without even the implied warranty of
13179404SobrienMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14179404SobrienGNU General Public License for more details.
15179404Sobrien
16179404SobrienYou should have received a copy of the GNU General Public License
17179404Sobrienalong with this program; if not, write to the Free Software
18218822SdimFoundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
19179404Sobrien
20218822Sdim#include "sysdep.h"
21179404Sobrien#include "bfd.h"
22179404Sobrien
23179404Sobrien#define TARGET_SYM mipslpei_vec
24179404Sobrien#define TARGET_NAME "pei-mips"
25179404Sobrien#define COFF_IMAGE_WITH_PE
26179404Sobrien#define PCRELOFFSET TRUE
27179404Sobrien#define COFF_LONG_SECTION_NAMES
28179404Sobrien
29179404Sobrien#include "pe-mips.c"
30179404Sobrien
31