URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [orpsocv2/] [sw/] [apps/] [cfi_ctrl_programmer/] [Makefile] - Rev 655
Compare with Previous | Blame | View Log
# Program to control the cfi_ctrl module to manage contents of flash memory.## author: julius.baxter@orsoc.se#SW_ROOT=../..#PROGRAMMINGFILE=PROGRAMMINGFILE_SWBIN=progfile.swbin # Binary file with sizewordPROGRAMMINGFILE_DATA=progfile.oELF_DEPENDS +=$(PROGRAMMINGFILE_DATA)include $(SW_ROOT)/Makefile.incOR32_LDFLAGS = -L$(SW_ROOT)/lib -lorpsoc -lgcc -Tcfi_ctrl_programmer.ld -e 256$(PROGRAMMINGFILE_DATA): $(PROGRAMMINGFILE)$(Q)$(OR32_LD) -r -b binary -o $@ $<$(Q)$(OR32_OBJCOPY) --rename-section .data=.userprogram $@%.dis: %.elf$(Q)$(OR32_OBJDUMP) -d $< > $@%.bin: %.elf$(Q)$(OR32_OBJCOPY) -O binary $< $@clean:$(Q)rm -f *.elf *.bin *.vmem *.flashin *.dis $(PROGRAMMINGFILE_SWBIN) $(PROGRAMMINGFILE_DATA)#distclean: clean
