summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2011-02-01 17:31:14 -0600
committerKamil Kaminski <kamilkss@gmail.com>2011-02-01 17:31:14 -0600
commit6c30258da6449f9ffae4b42f4aeda587fe4a3111 (patch)
tree37cf8d9492c95f308d9ba80c77d55d4b8625f6b8 /Makefile
parent97290be5e03ba2299de0e0988404fb4979852b5c (diff)
downloadpoker-6c30258da6449f9ffae4b42f4aeda587fe4a3111.tar.gz
poker-6c30258da6449f9ffae4b42f4aeda587fe4a3111.tar.bz2
poker-6c30258da6449f9ffae4b42f4aeda587fe4a3111.zip
try putting multiple cards to the left using bubble sort
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 6a63de7..468cd4c 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@
# Makefile
PROG = poker
-OBJS = main.o cardpile.o card.o game.o user.o opponent.o sorthand.o
+OBJS = main.o cardpile.o card.o game.o user.o opponent.o
CC = g++
DBGFLAGS = -g -O0
ifdef DEBUG
@@ -38,9 +38,6 @@ user.o: %.o: %.cpp %.h
opponent.o: %.o: %.cpp %.h
$(CC) -c $(CFLAGS) $<
-sorthand.o: %.o: %.cpp %.h
- $(CC) -c $(CFLAGS) $<
-
.PHONY: clean
clean: