18 lines
412 B
Plaintext
18 lines
412 B
Plaintext
#
|
|
# Author: W. Eric Norum
|
|
# Canadian Light Source
|
|
# eric@cls.usask.ca
|
|
#
|
|
# All RTEMS targets use the same Makefile fragment
|
|
#
|
|
RTEMS_TARGET_CPU = m68k
|
|
ARCH_DEP_CFLAGS += -DMY_DO_BOOTP=NULL
|
|
|
|
MUNCH_SUFFIX = .boot
|
|
MUNCHNAME = $(PRODNAME:%$(EXE)=%$(MUNCH_SUFFIX))
|
|
define MUNCH_CMD
|
|
$(RTEMS_TOOLS)/bin/$(OBJCOPY_FOR_TARGET) -O binary -R .comment -S $< $@
|
|
endef
|
|
|
|
include $(CONFIG)/os/CONFIG.Common.RTEMS
|