3 lines
64 B
Makefile
3 lines
64 B
Makefile
main:
|
|
nasm -g -f elf64 -o hello.o hello.s
|
|
ld -o hello hello.o
|