Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
CFLAGS = -Wno-deprecated-declarations
CFLAGS = -Wno-deprecated-declarations -std=c11 -g
CFLAGS += `pkg-config --cflags gtk+-2.0`
LIBS = `pkg-config --libs gtk+-2.0`
DESTDIR = bin

main:
gcc src/client.c src/deck.c src/game.c -o bin/poker $(CFLAGS) $(LIBS)
gcc src/client.c src/deck.c src/game.c -D_POSIX_C_SOURCE=199309L -pthread -o bin/poker $(CFLAGS) $(LIBS)
gcc -std=c11 -pthread -g src/server.c src/game.c src/deck.c -o bin/server

net:
gcc src/net.c src/deck.c src/game.c -o net -g
Binary file added assets/10_of_clubs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/10_of_diamonds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/10_of_hearts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/10_of_spades.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/2_of_clubs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/2_of_diamonds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/2_of_hearts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/2_of_spades.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/3_of_clubs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/3_of_diamonds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/3_of_hearts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/3_of_spades.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/4_of_clubs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/4_of_diamonds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/4_of_hearts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/4_of_spades.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/5_of_clubs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/5_of_diamonds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/5_of_hearts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/5_of_spades.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/6_of_clubs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/6_of_diamonds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/6_of_hearts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/6_of_spades.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/7_of_clubs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/7_of_diamonds.png
Binary file added assets/7_of_hearts.png
Binary file added assets/7_of_spades.png
Binary file added assets/8_of_clubs.png
Binary file added assets/8_of_diamonds.png
Binary file added assets/8_of_hearts.png
Binary file added assets/8_of_spades.png
Binary file added assets/9_of_clubs.png
Binary file added assets/9_of_diamonds.png
Binary file added assets/9_of_hearts.png
Binary file added assets/9_of_spades.png
Binary file added assets/ace_of_clubs.png
Binary file added assets/ace_of_diamonds.png
Binary file added assets/ace_of_hearts.png
Binary file added assets/ace_of_spades.png
Binary file added assets/ace_of_spades2.png
Binary file added assets/black_joker.png
Binary file added assets/card_back.png
Binary file added assets/jack_of_clubs.png
Binary file added assets/jack_of_clubs2.png
Binary file added assets/jack_of_diamonds.png
Binary file added assets/jack_of_diamonds2.png
Binary file added assets/jack_of_hearts.png
Binary file added assets/jack_of_hearts2.png
Binary file added assets/jack_of_spades.png
Binary file added assets/jack_of_spades2.png
Binary file added assets/king_of_clubs.png
Binary file added assets/king_of_clubs2.png
Binary file added assets/king_of_diamonds.png
Binary file added assets/king_of_diamonds2.png
Binary file added assets/king_of_hearts.png
Binary file added assets/king_of_hearts2.png
Binary file added assets/king_of_spades.png
Binary file added assets/king_of_spades2.png
Binary file added assets/queen_of_clubs.png
Binary file added assets/queen_of_clubs2.png
Binary file added assets/queen_of_diamonds.png
Binary file added assets/queen_of_diamonds2.png
Binary file added assets/queen_of_hearts.png
Binary file added assets/queen_of_hearts2.png
Binary file added assets/queen_of_spades.png
Binary file added assets/queen_of_spades2.png
Binary file added assets/red_joker.png
Binary file modified bin/poker
Binary file not shown.
Loading