add makefile and webserver file

This commit is contained in:
Nayan
2025-05-05 20:22:15 -04:00
parent ecdf8059eb
commit d9014718ed
2 changed files with 18 additions and 0 deletions

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
all: webserver.o
gcc -o webserver webserver.o
webserver: webserver.c
gcc -c webserver webserver.c
clean:
rm -f webserver webserver.o