Files
2024-05-07 18:09:20 +08:00

8 lines
95 B
Makefile
Executable File

all: httpd
httpd: httpd.c
gcc -W -Wall -lsocket -lpthread -o httpd httpd.c
clean:
rm httpd