Skip to content

Instantly share code, notes, and snippets.

@hikiko
Created September 29, 2019 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hikiko/86bd5d21623c721ef809e4782b908b16 to your computer and use it in GitHub Desktop.
Save hikiko/86bd5d21623c721ef809e4782b908b16 to your computer and use it in GitHub Desktop.
Makefile for dosbox asm (nasm)
test.com: test.asm
%.com: %.asm
nasm -o $@ -f bin $<
.PHONY: clean
clean:
rm -f test.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment