feat[OS/lab5]: completed part B

This commit is contained in:
2025-10-03 00:24:30 +03:00
parent 949f1b8ac4
commit 72d5756b79
4 changed files with 206 additions and 0 deletions

15
OSs/lab5/part-B/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