summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mcf5225x/make/custom/mcf5225x.cfg
blob: 6a415a787c83c8fdae090156fe3f2b7646705b12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
#  Config file for the mcf5225x BSP
#

RTEMS_CPU=m68k
RTEMS_CPU_MODEL=mcf52258

include $(RTEMS_ROOT)/make/custom/default.cfg

# This is the actual bsp directory used during the build process.
RTEMS_BSP_FAMILY=mcf5225x

#  This contains the compiler options necessary to select the CPU model
#  and (hopefully) optimize for it. 
CPU_CFLAGS = -mcpu=52235 $(PROJECT_FLAGS)

# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -fomit-frame-pointer
#CFLAGS_OPTIMIZE_V = -g

# This defines the operations performed on the linked executable.
# is currently required.
define bsp-post-link
	$(OBJCOPY) -O binary --strip-all \
	    $(basename $@).exe $(basename $@)$(DOWNEXT)
	$(SIZE) $(basename $@).exe
endef