From 6c30258da6449f9ffae4b42f4aeda587fe4a3111 Mon Sep 17 00:00:00 2001 From: Kyle K Date: Tue, 1 Feb 2011 17:31:14 -0600 Subject: try putting multiple cards to the left using bubble sort --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Makefile') 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: -- cgit v1.2.3