URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [orp/] [orp_soc/] [sw/] [uart/] [Makefile] - Rev 1158
Go to most recent revision | Compare with Previous | Blame | View Log
cases = uart-nocache uart-icdc
common = ../support/libsupport.a
all: $(cases)
uart-nocache: uart.o ../support/reset-nocache.o $(common)
or32-uclinux-ld -T ../support/orp.ld $? -o $@.or32
or32-uclinux-objcopy -O binary $@.or32 $@.bin
../utils/bin2hex $@.bin > $@.hex
cp $@.hex ../../sim/src/
uart-icdc: uart.o ../support/reset-icdc.o
or32-uclinux-ld -T ../support/orp.ld $? -o $@.or32 $(common)
or32-uclinux-objcopy -O binary $@.or32 $@.bin
../utils/bin2hex $@.bin > $@.hex
cp $@.hex ../../sim/src/
uart.o: uart.c
or32-uclinux-gcc -O2 $? -c -o $@
clean:
rm -f *.o *.or32 *.log *.bin *.srec *.hex *.log stdout.txt
Go to most recent revision | Compare with Previous | Blame | View Log