source: rtems/c/src/lib/libbsp/m68k/mvme147s/make/custom/mvme147s.cfg @ 315c363a

4.104.115
Last change on this file since 315c363a was 315c363a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/15/09 at 09:15:19

2009-10-15 Ralf Corsépius <ralf.corsepius@…>

  • make/custom/mvme147s.cfg: New (relocated from /make/custom).
  • Property mode set to 100644
File size: 715 bytes
Line 
1#
2#  Config file for the mvme147s BSP
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=m68k
10RTEMS_CPU_MODEL=m68030
11
12# This is the actual bsp directory used during the build process.
13RTEMS_BSP_FAMILY=mvme147s
14
15#  This contains the compiler options necessary to select the CPU model
16#  and (hopefully) optimize for it.
17CPU_CFLAGS = -mcpu=68030
18
19# optimize flag: typically -O2
20CFLAGS_OPTIMIZE_V = -O2 -g -fomit-frame-pointer
21
22define bsp-post-link
23        $(OBJCOPY) -O srec $(basename $@).exe $(basename $@).srec
24        sed -e 's/.$$//' -e '/^S0/d' $(basename $@).srec | \
25            $(PACKHEX) > $(basename $@)$(DOWNEXT)
26        rm -f $(basename $@).srec
27        $(default-bsp-post-link)
28endef
29
30# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.