##// END OF EJS Templates
Commit before working on the ERR 4 due to message queue...
Commit before working on the ERR 4 due to message queue This happens during SWF and CWF emission

File last commit:

r29:e6c840d89712 default
r34:c3c11207c46d default
Show More
Makefile
20 lines | 473 B | text/x-makefile | MakefileLexer
SREC_PREFIX = RpwLfrApp
SREC_COUNTER = 0001
SREC_FSW_REF = fsw-0-7
SREC_SUFFIX = .srec
SREC_TEXT = $(SREC_PREFIX)_$(SREC_COUNTER)_text_$(SREC_FSW_REF)$(SREC_SUFFIX)
SREC_DATA = $(SREC_PREFIX)_$(SREC_COUNTER)_data_$(SREC_FSW_REF)$(SREC_SUFFIX)
OBJCOPY = sparc-rtems-objcopy
OBJCOPY_OPT = -g -v
all: text data
text: fsw
$(OBJCOPY) $(OBJCOPY_OPT) fsw $(SREC_TEXT) -O srec -j .text
data: fsw
$(OBJCOPY) $(OBJCOPY_OPT) fsw $(SREC_DATA) -O srec -j .data
clean:
rm *.srec