#
# 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++ -g -Wall
        
testvect: Utils.o testvect.o vector.o
	$(CC) Utils.o testvect.o vector.o -o testvect
        
vector.o: vector.cpp vector.hpp
	$(CC) -c vector.cpp

Utils.o: Utils.cpp
	$(CC) -c Utils.cpp
	
testvect.o: testvect.cpp
	$(CC) -c testvect.cpp