Subversion Repositories HelenOS-historic

Rev

Rev 376 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
455 decky 1
.PHONY: build clean
35 jermar 2
 
3
build: boot.bin
376 jermar 4
	cp boot.bin ../../../load.bin
35 jermar 5
 
6
boot.bin: boot.o
455 decky 7
	$(LD) -EL -T _link.ld -n boot.o -o $@
35 jermar 8
 
455 decky 9
boot.o: boot.s
35 jermar 10
	$(AS) boot.s -o $@
11
 
12
clean:
455 decky 13
	-rm -f boot.o boot.bin ../../../load.bin