source: rtems/make/custom/tqm8xx.cfg @ 641982a

4.104.115
Last change on this file since 641982a was fb2205a, checked in by Joel Sherrill <joel.sherrill@…>, on 09/09/08 at 16:30:27

2008-09-09 Joel Sherrill <joel.sherrill@…>

  • leaf.cfg, compilers/gcc-target-default.cfg, custom/bf537Stamp.cfg, custom/gen5200.cfg, custom/gen83xx.cfg, custom/genmcf548x.cfg, custom/mbx8xx.cfg, custom/mpc55xx.cfg, custom/nds.cfg, custom/pc386.cfg, custom/tqm8xx.cfg: Remove use of AM_LDFLAGS. Ensure LDFLAGS works all the time. Clean up BSPs which defined their own make-exe rules inappropriately.
  • Property mode set to 100644
File size: 694 bytes
Line 
1#
2#  Config file for a PowerPC MPC8xx-based TQM8xx carrier card
3#
4
5include $(RTEMS_ROOT)/make/custom/default.cfg
6
7RTEMS_CPU=powerpc
8RTEMS_CPU_MODEL=mpc860
9
10# This is the actual bsp directory used during the build process.
11RTEMS_BSP_FAMILY=tqm8xx
12
13CPU_CFLAGS = -mcpu=860 -Dmpc860 -D$(RTEMS_TQM_MODEL) \
14             -mstrict-align -fno-strict-aliasing \
15             -meabi -msdata -fno-common
16
17# optimize flag: typically -O2
18CFLAGS_OPTIMIZE_V = -O2 -g -fno-keep-inline-functions
19
20RTEMS_LINKCMDS=linkcmds.tqm8xx
21LDFLAGS += -qnolinkcmds -T $(RTEMS_LINKCMDS)
22
23define bsp-post-link
24        cp $(basename $@).exe $(basename $@)$(DOWNEXT)
25        $(STRIP) $(basename $@)$(DOWNEXT)
26        $(default-bsp-post-link)
27endef
Note: See TracBrowser for help on using the repository browser.