# Makefile for timeOfDay class and associated main programs
# Donald Duck (don't put real name on exam questions :-) 
# 4/18/06 for CISC181, practice for E02

# see Makefile.with.explanation for more comments about what all of this means.
# the remainder of this file would be acceptable answer to the exam question.

CCC = g++ 

BINARIES= main 

all: ${BINARIES}

main: timeOfDay.o main.o
	${CCC} timeOfDay.o main.o -o main

clean:
	/bin/rm -f *.o core a.out ${BINARIES}

