blob: 84bf195fc639cb78449f8c555939e18a8f511af7 (
plain)
1
2
3
4
5
6
7
8
|
CFLAGS=-ggdb3 -Wall -Werror -pedantic -std=gnu99
test-eval: deck.o eval.o eval-c4.o test-eval.o deck-c4.o cards.o input.o future.o
gcc -o test-eval -ggdb3 deck.o deck-c4.o eval-c4.o eval.o test-eval.o cards.o input.o future.o
poker: $(GIVEN_OBJS) $(MY_OBJS)
gcc -o poker -ggdb3 $(MY_OBJS) $(GIVEN_OBJS)
clean:
rm -f test poker cards.o my-test-main.o *~
|