Initial checkin of toy OS project.
[os.git] / boot0 / Makefile
1 RM              =       /bin/rm
2 TARGET          =       boot0.bin
3 SOURCES         =       boot0.asm
4
5 all:            $(SOURCES)
6                 nasm -f bin -o $(TARGET) $(SOURCES) ; \
7                 mformat -f 1440 -B boot0.bin Q:
8 clean:
9                 $(RM) -f *.log *.core *~ *.gmon \#*\# $(TARGET)