# Makefile  "boot"

include ../Rules.make

all: boot

boot: boot.o
	$(LD) -o $@ -T boot.lds $<

clean:
	rm -f *.o boot

boot.o:	boot.S $(INCLUDE)
