summaryrefslogtreecommitdiff
path: root/Makefile
blob: c2323cf96fbdeac372c8602233efcf1f576629d3 (plain)
1
2
3
4
5
6
7
8
9
10
LDFLAGS= -Ttext 0x7C00 --oformat binary
.PHONY: all clean

all: boot.bin

clean:
	$(RM) boot.bin boot.o

boot.bin: boot.o
	$(LD) $(LDFLAGS) -o $@ $<