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