#
# 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++
        
ReadWords: Utils.o ReadWords.o
	$(CC) Utils.o ReadWords.o -o ReadWords
        
ReadWords.o: ReadWords.cc ReadWords.h
	$(CC) -c ReadWords.cc

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