Warning, /bsps/m68k/genmcf548x/config/genmcf548x.inc is written in an unsupported language. File is not indexed.
0001 #
0002 # Config file for the genmcf548x BSP
0003 #
0004
0005 RTEMS_CPU=m68k
0006
0007 include $(RTEMS_ROOT)/make/custom/default.cfg
0008
0009 # This contains the compiler options necessary to select the CPU model
0010 # and (hopefully) optimize for it.
0011 CPU_CFLAGS = -mcfv4e -Wa,-memac
0012
0013 # optimize flag: typically -O2
0014 CFLAGS_OPTIMIZE_V = -O2 -g -fomit-frame-pointer
0015 CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
0016
0017 LDFLAGS = -Wl,--gc-sections
0018
0019 define bsp-post-link
0020 $(OBJCOPY) -O binary --strip-all $(basename $@)$(EXEEXT) \
0021 $(basename $@)$(DOWNEXT)
0022 $(default-bsp-post-link)
0023 endef