# Specify whether or not you want to use gdb. #CC = g++ -Wall -ansi -pedantic -O CC = gcc -Wall -ansi -pedantic -O # List the object files. O_FILES = test.o deck.o hand.o card.o glad: $(O_FILES) rm -f ./contest $(CC) -o ./contest $(O_FILES)