7 lines
67 B
Makefile
7 lines
67 B
Makefile
FASM = fasm
|
|
|
|
mine.exe: mine.asm
|
|
$(FASM) $? $@
|
|
|
|
clean:
|
|
-rm *.exe
|