##// END OF EJS Templates
VHDL_DEV implemented. The code is compatible with:...
VHDL_DEV implemented. The code is compatible with: 1) the 206 bitstream 2) the new bitstream when VHDL_DEV is set

File last commit:

r82:4237b1096e59 VHDLib206
r91:6af3303996c6 VHDLib206
Show More
Makefile
20 lines | 473 B | text/x-makefile | MakefileLexer
SREC_PREFIX = RpwLfrApp
SREC_COUNTER = 0002
SREC_FSW_REF = fsw-1-0
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