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


                                   




















                                                                       

                                                            
     
#
#  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 $@)$(EXEEXT) $(basename $@)$(DOWNEXT)
	$(SIZE) $(basename $@)$(EXEEXT)
endef