URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [disk/] [tools/] [fs-EOS32/] [mkpboot/] [Makefile] - Rev 265
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile to build the partition boot record
#
BUILD = ../../../../build
all: pbr.bin
pbr.bin: pbr.o
$(BUILD)/bin/ld -h -rc 0xC0010000 -o pbr.bin pbr.o
pbr.o: pbr.s
$(BUILD)/bin/as -o pbr.o pbr.s
clean:
rm -f *~ pbr.o pbr.bin
Go to most recent revision | Compare with Previous | Blame | View Log