From 3cf128d6da667d00bb5bb659413ea55a98a02aff Mon Sep 17 00:00:00 2001 From: mjfernez Date: Tue, 12 Oct 2021 20:18:28 -0400 Subject: Added description. x86 solutions for some problems --- 04-Largest-Palindrome-Product/asm/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 04-Largest-Palindrome-Product/asm/Makefile (limited to '04-Largest-Palindrome-Product/asm/Makefile') 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 -- cgit v1.2.3