URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [mkpart/] [mkmboot/] [stage1/] [Makefile] - Rev 316
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile to build the master boot record
#
BUILD = ../../../../build
all: mbr.bin
mbr.bin: mbr.o
$(BUILD)/bin/ld -h -rc 0xC0010000 -o mbr.bin mbr.o
mbr.o: mbr.s
$(BUILD)/bin/as -o mbr.o mbr.s
clean:
rm -f *~ mbr.o mbr.bin
Go to most recent revision | Compare with Previous | Blame | View Log