Subversion Repositories HelenOS-historic

Rev

Rev 376 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

.PHONY: build clean

build: boot.bin
    cp boot.bin ../../../load.bin

boot.bin: boot.o
    $(LD) -EL -T _link.ld -n boot.o -o $@

boot.o: boot.s
    $(AS) boot.s -o $@

clean:
    -rm -f boot.o boot.bin ../../../load.bin