RM		= 	/bin/rm
TARGET 		=	boot0.bin
SOURCES		= 	boot0.asm

all:		$(SOURCES)
		nasm -f bin -o $(TARGET) $(SOURCES) ; \
		mformat -f 1440 -B boot0.bin Q:
clean:
		$(RM) -f *.log *.core *~ *.gmon \#*\# $(TARGET)
