all: run

joueur.o : joueur.cpp joueur.h
	g++ -std=c++17 -c joueur.cpp

pokemon.o : pokemon.cpp pokemon.h
	g++ -std=c++17 -c pokemon.cpp

main.o	: main.cpp
	g++ -std=c++17 -c main.cpp

test: Vector.o main.o
	g++ -o test Vector.o main.o

run: test
	./test

clean :
	rm *o
