blob: 162c8107cfe5e98389dd99f14445b1be623e61f0 (
plain)
1
2
3
4
5
6
7
8
9
|
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)
|