# Makefile     

include ../Rules.make

image: boot

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

dep:
	$(CC) $(ALLFLAGS) -M $(wildcard *.S *.c) > .depend

clean:
	rm -f *.o boot

remove:
	rm -f *.o boot .depend
