undockerize application

This commit is contained in:
2025-06-02 00:57:23 +02:00
parent 8ba1b04f08
commit feee7b53cc
4 changed files with 9 additions and 37 deletions

8
Makefile Normal file
View File

@ -0,0 +1,8 @@
.POSIX:
server: server.c libhttp.a
gcc -I . -L. -ansi -ggdb -o http_server server.c -lstrops -Wl,-Bstatic -lhttp -Wl,-Bdynamic
libhttp.a: http.c
gcc -c -ansi -ggdb -o http.o http.c -lstrops
ar cr libhttp.a http.o
rm http.o