added libuuid

This commit is contained in:
Blboun3
2024-01-16 13:42:01 +01:00
parent fb23c62d16
commit 18becab1fb
33 changed files with 42452 additions and 2 deletions

View File

@ -5,10 +5,10 @@ clean:
@rm -rf server
server: main.o httpd.o
gcc -o server $^ -lssl -lcrypto -luuid
gcc -o server $^ -lssl -lcrypto -I.
main.o: main.c httpd.h
gcc -c -o main.o main.c -lssl -lcrypto -luuid
gcc -c -o main.o main.c -lssl -lcrypto -I.
httpd.o: httpd.c httpd.h
gcc -c -o httpd.o httpd.c