aboutsummaryrefslogtreecommitdiffstats
path: root/07-10001st-Prime/asm/Makefile
diff options
context:
space:
mode:
authormjfernez <mjfernez@gmail.com>2021-10-12 20:18:28 -0400
committermjfernez <mjfernez@gmail.com>2021-10-12 20:18:28 -0400
commit3cf128d6da667d00bb5bb659413ea55a98a02aff (patch)
tree12eb90997dfa63d65fe6da714626271272342320 /07-10001st-Prime/asm/Makefile
parent009ce017d99a8deb2089438381c273e8f3ea3b67 (diff)
downloadProject_Euler_Solutions-master.tar.gz
Added description. x86 solutions for some problemsHEADmaster
Diffstat (limited to '07-10001st-Prime/asm/Makefile')
-rw-r--r--07-10001st-Prime/asm/Makefile6
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