From 831f9f01fbe4088eb6bd378c0e417d9996b676fd Mon Sep 17 00:00:00 2001 From: scratko Date: Fri, 30 Aug 2024 12:46:56 +0300 Subject: Final version v2.0 Added windows client. SIGPIPE signal was being sent to the server when the client was disconnected. Now there is handling of this signal. Added a delay when displaying some informational messages. --- client/Makefile | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 client/Makefile (limited to 'client/Makefile') diff --git a/client/Makefile b/client/Makefile deleted file mode 100644 index 2e2ce88..0000000 --- a/client/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -SRCMODULES = card_handling.c card_stack.c data_decryption.c\ - printing_game_frames.c verification_client_input.c client.c -OBJMODULES = $(SRCMODULES:.c=.o) -CC = gcc -CFLAGS = -Wall -g -c - -all: client - -%.o: %.с %.h - $(CC) $(CFLAGS) $< -o $@ - -client: $(OBJMODULES) - $(CC) $(LIBS) $^ -o $@ - -ifneq (clean, $(MAKECMDGOALS)) --include deps.mk -endif - -deps.mk: $(SRCMODULES) - $(CC) -MM $^ > $@ - -clean: - rm -f *.o client -- cgit v1.2.3