feat: lab7 done

This commit is contained in:
2025-10-13 18:44:31 +03:00
parent 1ecce31da4
commit e57ba38b48
4 changed files with 228 additions and 0 deletions

15
OSs/lab7/Makefile Normal file
View File

@ -0,0 +1,15 @@
targets = server client
all: $(targets)
server: server.o
$(CC) -o $@ $^ $(CFLAGS)
client: client.o
$(CC) -o $@ $^ $(CFLAGS)
%.o: %.c
$(CC) -c $^ -o $@ $(CFLAGS)
clean:
rm -f $(targets)
rm -f *.o