lab4 webserver

This commit is contained in:
2025-11-02 13:37:19 +01:00
parent 81af17d42c
commit 895958d058
12 changed files with 470 additions and 0 deletions

12
lab4/Makefile Normal file
View File

@@ -0,0 +1,12 @@
CC = gcc
CFLAGS = -Wall -Wextra -O2
OBJ = main.o server.o daemon.o
webserver: $(OBJ)
$(CC) $(CFLAGS) -o $@ $(OBJ)
%.o: %.c
$(CC) $(CFLAGS) -c $<
clean:
rm -f *.o webserver