summaryrefslogblamecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mcf5225x/make/custom/mcf5225x.cfg
blob: 1bffab942e15eccddaf7f648364e96d6132efe63 (plain) (tree)
































                                                                       
#
#  Config file for the mcf5225x BSP
#
#Based on:
#  $Id$
#
# A0.01 Initial Version                   BDS	07/26/01
#


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