aboutsummaryrefslogtreecommitdiffstats
path: root/05-Smallest-Multiple/asm/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '05-Smallest-Multiple/asm/Makefile')
-rw-r--r--05-Smallest-Multiple/asm/Makefile6
1 files changed, 6 insertions, 0 deletions
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