This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
http/Makefile
2025-11-30 22:03:38 +09:00

13 lines
186 B
Makefile

all:
nasm -f elf64 main.s -o main.o
ld main.o -o server
debug:
nasm -f elf64 -g -F dwarf main.s -o main.o
ld main.o -o server
clean:
rm -rf main.o server
.PHONY: all debug clean