5 lines
74 B
Makefile
5 lines
74 B
Makefile
main:
|
|
nasm -g -f elf64 -o main.o main.s
|
|
ld -o main main.o
|
|
|
|
.PHONY: main
|