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

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