##// END OF EJS Templates
MINI LFR - WFP&MS - 0.1.7...
MINI LFR - WFP&MS - 0.1.7 - little update on Time Management: added Case Default in a Mux. - update on MS - DMA's FSM: Now, there is a pre-FSM for acknoledged the reception of Header.

File last commit:

r110:ff6ca9d2a8d8 JC
r332:d5b2e267f44d (MINI-LFR) WFP_MS-0-1-7 JC
Show More
Makefile
21 lines | 639 B | text/x-makefile | MakefileLexer
GRLIB=../../..
CC=gcc
XCC=sparc-elf-gcc -I$(GRLIB)/software/leon3 $(BOPT)
XAS=sparc-elf-gcc -c -I. -I$(GRLIB)/software/leon3 $(BOPT)
bootrom.o: bootrom.S bootrom.h
$(XAS) $<
bootrom.exe: bootrom.o
$(XCC) -nostdlib -Tlinkprom -N -L./ -Ttext=0 -nostartfiles -o bootrom.exe $<
make_bootrom : $(GRLIB)/bin/ahbrom.c
@if test -r "/mingw/bin/gcc.exe"; then \
$(CC) $(GRLIB)/bin/ahbrom.c -o make_bootrom -lwsock32; \
else \
$(CC) $(GRLIB)/bin/ahbrom.c -o make_bootrom; \
fi;
bootrom.vhd: bootrom.exe
make make_bootrom
sparc-elf-objcopy -O binary bootrom.exe bootrom.bin
./make_bootrom bootrom.bin bootrom.vhd