From f077bc7aa0f41a10b595307124e2051c2fbdfbf0 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Mon, 12 Oct 2015 22:10:51 -0400 Subject: Daily assembler. --- asm-64/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/asm-64/Makefile b/asm-64/Makefile index c208e6c..d4646e4 100644 --- a/asm-64/Makefile +++ b/asm-64/Makefile @@ -1,5 +1,9 @@ -all: hello +all: hello printf hello: nasm -felf64 -o hello.o hello.asm ld -o hello hello.o + +printf: + nasm -felf64 -o printf.o printf.asm + gcc -o printf printf.o -- cgit v1.2.3