x64-httpd/makefile
2025-05-17 10:46:05 +00:00

5 lines
74 B
Makefile

main:
nasm -g -f elf64 -o main.o main.s
ld -o main main.o
.PHONY: main