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 --- 05-Smallest-Multiple/asm/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 05-Smallest-Multiple/asm/Makefile (limited to '05-Smallest-Multiple/asm/Makefile') diff --git a/05-Smallest-Multiple/asm/Makefile b/05-Smallest-Multiple/asm/Makefile new file mode 100644 index 0000000..3ae43fc --- /dev/null +++ b/05-Smallest-Multiple/asm/Makefile @@ -0,0 +1,6 @@ +smallmult: smallmult.o + gcc smallmult.o -o smallmult +smallmult.o: smallmult.asm + nasm -w+all -f elf64 -g -F stabs smallmult.asm +clean: + rm -f smallmult smallmult.o -- cgit v1.2.3