diff options
Diffstat (limited to 'asm-64/Makefile')
| -rw-r--r-- | asm-64/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/asm-64/Makefile b/asm-64/Makefile new file mode 100644 index 0000000..c208e6c --- /dev/null +++ b/asm-64/Makefile @@ -0,0 +1,5 @@ +all: hello + +hello: + nasm -felf64 -o hello.o hello.asm + ld -o hello hello.o |
