back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
path: root/client/Makefile
diff options
context:
space:
mode:
authorscratko <m@scratko.xyz>2024-08-30 12:46:56 +0300
committerscratko <m@scratko.xyz>2024-08-30 14:59:44 +0300
commit831f9f01fbe4088eb6bd378c0e417d9996b676fd (patch)
tree53297459d35ad795618c351a79b1829776e5e1f4 /client/Makefile
parent4b6c15f780d59895f067383a5041edcfe86f504e (diff)
downloaddurak-831f9f01fbe4088eb6bd378c0e417d9996b676fd.tar.gz
durak-831f9f01fbe4088eb6bd378c0e417d9996b676fd.tar.bz2
durak-831f9f01fbe4088eb6bd378c0e417d9996b676fd.zip
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.
Diffstat (limited to 'client/Makefile')
-rw-r--r--client/Makefile23
1 files changed, 0 insertions, 23 deletions
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