URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [mp3/] [sw/] [ints/] [Makefile] - Rev 319
Go to most recent revision | Compare with Previous | Blame | View Log
CCFLAGS = -O2 -g -nostdlib
all: ints.or32
ints.or32: ints.o
or32-rtems-gcc -nostdlib ints.o -o ints.or32
or32-rtems-objcopy -O binary ints.or32 ints.bin
../utils/bin2srec ints.bin > ints.srec
../utils/bin2hex ints.bin > ints.hex
cp ints.hex ../../sim/src/flash.in
ints.o: ints.S
or32-rtems-gcc $(CCFLAGS) ints.S -c -DOR1K
clean:
rm -f *.o ints.or32 *.bin *.srec *.hex
Go to most recent revision | Compare with Previous | Blame | View Log