source: rtems/make/custom/ts_386ex.cfg @ 73cdeb6

4.104.114.84.95
Last change on this file since 73cdeb6 was c6eba79, checked in by Joel Sherrill <joel.sherrill@…>, on 05/10/07 at 17:36:19

2007-05-10 Joel Sherrill <joel.sherrill@…>

  • custom/gba.cfg, custom/gp32.cfg, custom/i386ex.cfg, custom/pc386.cfg, custom/sim68000.cfg, custom/ts_386ex.cfg: Clean up to use .nxe extension instead of BSP unique ones.
  • Property mode set to 100644
File size: 826 bytes
Line 
1#
2#  Config file for the ts-386ex BSP
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=i386
10RTEMS_CPU_MODEL=i386_nofp
11
12# This is the actual bsp directory used during the build process.
13RTEMS_BSP_FAMILY=ts_386ex
14
15#  This contains the compiler options necessary to select the CPU model
16#  and (hopefully) optimize for it. Enables software floating-point
17#  emulation since we don't have a i387 co-processor.
18#
19CPU_CFLAGS =-msoft-float -mno-fp-ret-in-387
20
21# optimize flag: typically -O2
22CFLAGS_OPTIMIZE_V = -O2 -g
23
24define make-exe
25        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
26            $(LINK_OBJS) $(LINK_LIBS)
27        $(OBJCOPY) -O binary $(basename $@).nxe $(basename $@).exe
28        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
29        $(SIZE) $(basename $@).nxe
30endef
31
32# Miscellaneous additions go here
33
Note: See TracBrowser for help on using the repository browser.