1214571Sdim/* BFD back-end for ARM WINCE PE files.
2214571Sdim   Copyright 2006 Free Software Foundation, Inc.
3214571Sdim
4214571Sdim   This file is part of BFD, the Binary File Descriptor library.
5214571Sdim
6214571Sdim   This program is free software; you can redistribute it and/or modify
7214571Sdim   it under the terms of the GNU General Public License as published by
8214571Sdim   the Free Software Foundation; either version 2 of the License, or
9214571Sdim   (at your option) any later version.
10214571Sdim
11214571Sdim   This program is distributed in the hope that it will be useful,
12214571Sdim   but WITHOUT ANY WARRANTY; without even the implied warranty of
13214571Sdim   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14214571Sdim   GNU General Public License for more details.
15214571Sdim
16214571Sdim   You should have received a copy of the GNU General Public License
17214571Sdim   along with this program; if not, write to the Free Software
18214571Sdim   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
19214571Sdim
20214571Sdim#define TARGET_UNDERSCORE    0
21214571Sdim#define USER_LABEL_PREFIX    ""
22214571Sdim
23214571Sdim#define TARGET_LITTLE_SYM    arm_wince_pe_little_vec
24214571Sdim#define TARGET_LITTLE_NAME   "pe-arm-wince-little"
25214571Sdim#define TARGET_BIG_SYM       arm_wince_pe_big_vec
26214571Sdim#define TARGET_BIG_NAME      "pe-arm-wince-big"
27214571Sdim
28214571Sdim#define bfd_arm_allocate_interworking_sections \
29214571Sdim  bfd_arm_wince_pe_allocate_interworking_sections
30214571Sdim#define bfd_arm_get_bfd_for_interworking \
31214571Sdim  bfd_arm_wince_pe_get_bfd_for_interworking
32214571Sdim#define bfd_arm_process_before_allocation \
33214571Sdim  bfd_arm_wince_pe_process_before_allocation
34214571Sdim
35214571Sdim#define LOCAL_LABEL_PREFIX "."
36214571Sdim
37214571Sdim#include "pe-arm.c"
38