8 lines
95 B
Makefile
Executable File
8 lines
95 B
Makefile
Executable File
all: httpd
|
|
|
|
httpd: httpd.c
|
|
gcc -W -Wall -lsocket -lpthread -o httpd httpd.c
|
|
|
|
clean:
|
|
rm httpd
|