17 lines
159 B
Makefile
17 lines
159 B
Makefile
|
all: makall
|
||
|
|
||
|
makall: iflop.com
|
||
|
|
||
|
|
||
|
iflop.com:
|
||
|
nasm -f bin -o iflop.com iflop.asm
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o
|
||
|
rm -f *.bin
|
||
|
rm -f *.sys
|
||
|
rm -f *.com
|
||
|
|
||
|
|
||
|
|