some test required

This commit is contained in:
Blboun3
2024-01-16 13:37:59 +01:00
parent 978f65dcd6
commit fb23c62d16
20 changed files with 299450 additions and 98 deletions

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
all: server
clean:
rm -rf *.o
@rm -rf server
server: main.o httpd.o
gcc -o server $^ -lssl -lcrypto -luuid
main.o: main.c httpd.h
gcc -c -o main.o main.c -lssl -lcrypto -luuid
httpd.o: httpd.c httpd.h
gcc -c -o httpd.o httpd.c