diff options
author | scratko <m@scratko.xyz> | 2024-08-17 02:42:19 +0300 |
---|---|---|
committer | scratko <m@scratko.xyz> | 2024-08-17 02:42:19 +0300 |
commit | 4b2fdc91d42a438193d15840e10851c3847fbe80 (patch) | |
tree | 08c3de6e851ee07463beae6d0a2fbd9e74202662 /client/Makefile | |
parent | eb90648bdad1443c9cfc72e903a93642e10a0ab7 (diff) | |
download | durak-4b2fdc91d42a438193d15840e10851c3847fbe80.tar.gz durak-4b2fdc91d42a438193d15840e10851c3847fbe80.tar.bz2 durak-4b2fdc91d42a438193d15840e10851c3847fbe80.zip |
Global fixes v3.0
Fixed bug when entering cards incorrectly.
Added recognition of disconnection from the server.
Added welcome screen and update screen.
Diffstat (limited to 'client/Makefile')
-rw-r--r-- | client/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/client/Makefile b/client/Makefile index eeae6c6..48e0d92 100644 --- a/client/Makefile +++ b/client/Makefile @@ -2,7 +2,7 @@ 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 +CFLAGS = -Wall -g -c -D DEBUG all: client @@ -12,7 +12,12 @@ all: client client: $(OBJMODULES) $(CC) $(LIBS) $^ -o $@ +ifneq (clean, $(MAKECMDGOALS)) -include deps.mk +endif deps.mk: $(SRCMODULES) $(CC) -MM $^ > $@ + +clean: + rm -f *.o client |