aboutsummaryrefslogtreecommitdiffstats
path: root/04-Largest-Palindrome-Product/asm/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '04-Largest-Palindrome-Product/asm/Makefile')
-rw-r--r--04-Largest-Palindrome-Product/asm/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/04-Largest-Palindrome-Product/asm/Makefile b/04-Largest-Palindrome-Product/asm/Makefile
new file mode 100644
index 0000000..53b33b2
--- /dev/null
+++ b/04-Largest-Palindrome-Product/asm/Makefile
@@ -0,0 +1,6 @@
+palindrome: palindrome.o
+ gcc palindrome.o -o palindrome
+palindrome.o: palindrome.asm
+ nasm -w+all -f elf64 -g -F stabs palindrome.asm
+clean:
+ rm -f palindrome palindrome.o