diff options
Diffstat (limited to '07-10001st-Prime/asm/Makefile')
-rw-r--r-- | 07-10001st-Prime/asm/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/07-10001st-Prime/asm/Makefile b/07-10001st-Prime/asm/Makefile new file mode 100644 index 0000000..035c695 --- /dev/null +++ b/07-10001st-Prime/asm/Makefile @@ -0,0 +1,6 @@ +prime: prime.o + gcc prime.o -o prime +prime.o: prime.asm + nasm -w+all -f elf64 -g -F stabs prime.asm +clean: + rm -f prime prime.o |