mineassembly/Makefile

8 lines
67 B
Makefile
Raw Normal View History

FASM = fasm
mine.exe: mine.asm
$(FASM) $? $@
clean:
-rm *.exe