diff --git a/travail_pratique/vec2/Makefile b/travail_pratique/vec2/Makefile
index 668479bb412752e4dce1aa76668a6a5818307240..79d77da1249e7b98599e942690cc6c06a0834b77 100644
--- a/travail_pratique/vec2/Makefile
+++ b/travail_pratique/vec2/Makefile
@@ -11,5 +11,9 @@ main.o: main.c
 vec2.o: vec2.c vec2.h
 	$(CC) $(OPTS) -c $^
 
+test:
+	make -C tests test
+
 clean:
-	rm -f *.o main
\ No newline at end of file
+	rm -f *.o main
+	make -C tests clean