source: rtems/make/custom/bf537Stamp.cfg @ a2138d4

4.104.114.95
Last change on this file since a2138d4 was a2138d4, checked in by Joel Sherrill <joel.sherrill@…>, on 08/15/08 at 20:22:53

2008-08-15 Allan Hessenflow <allanh@…>

  • custom/bf537Stamp.cfg: New file.
  • Property mode set to 100644
File size: 741 bytes
Line 
1#
2#  Config file for Blackfin bf537Stamp
3#
4
5include $(RTEMS_ROOT)/make/custom/default.cfg
6
7RTEMS_CPU=bfin
8RTEMS_CPU_MODEL=bf537
9
10# This is the actual bsp directory used during the build process.
11RTEMS_BSP_FAMILY=bf537Stamp
12
13#  This contains the compiler options necessary to select the CPU model
14#  and (hopefully) optimize for it.
15#
16CPU_CFLAGS =
17
18# optimize flag: typically -O2
19# gcc-4.2.0 segfaults on -OX > -O0
20CFLAGS_OPTIMIZE_V = -O2 -g
21
22# The following are definitions of make-exe which will work using ld as
23# is currently required.
24
25define make-exe
26        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
27            $(LDLIBS) -o $@ \
28            $(LINK_OBJS) $(LINK_LIBS)
29        $(NM) -g -n $@ > $(basename $@).num
30        $(SIZE) $@
31endef
32
33# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.