source: rtems/make/custom/mvme136.cfg @ e35c696

4.104.114.84.95
Last change on this file since e35c696 was 6455dde, checked in by Joel Sherrill <joel.sherrill@…>, on 05/09/07 at 18:47:22

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

  • leaf.cfg, compilers/gcc-no_bsp.cfg: Add optional manager stub for Classic API Barrier.
  • Property mode set to 100644
File size: 923 bytes
Line 
1#
2#  Config file for the mvme136 BSP
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=m68k
10RTEMS_CPU_MODEL=m68020
11
12# This is the actual bsp directory used during the build process.
13RTEMS_BSP_FAMILY=mvme136
14
15#
16#  This contains the compiler options necessary to select the CPU model
17#  and (hopefully) optimize for it.
18#
19CPU_CFLAGS =
20
21# optimize flag: typically -O2
22CFLAGS_OPTIMIZE_V = -Os -g -fomit-frame-pointer -DNDEBUG
23
24# The following are definitions of make-exe which will work using ld as
25# is currently required.
26
27define make-exe
28        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
29            $(LINK_OBJS) $(LINK_LIBS)
30        $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).srec
31        sed -e 's/.$$//' -e '/^S0/d' $(basename $@).srec | \
32            $(PACKHEX) > $(basename $@).exe
33        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
34        $(SIZE) $(basename $@).nxe
35endef
36# Miscellaneous additions go here
37
Note: See TracBrowser for help on using the repository browser.