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

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