CXX = g++
CXXFLAGS = -Wall -pedantic -std=c++17 -g

Test: vector_test.o
	${CXX} ${CXXFLAGS} -o $@ $^

vector_test.o: vector.hpp vector.cpp
