#
# comments start with a # sign
#
# each item in the make file consists of
# three things:  a product, its ingredients and how to make it
#
# gcc -o test test.c -lcurses
# CC = gcc -g -Wall


CC = g++
        
Time: Utils.o Time.o
	$(CC) Utils.o Time.o -o Time
        
Time.o: Time.cc Time.h
	$(CC) -c Time.cc

Utils.o: Utils.cc
	$(CC) -c Utils.cc