diff --git a/Final Code/Makefile b/Final Code/Makefile index 9b5331882676ff93c2df7b9deb1732ad74492d1b..d27361938e9f8e23ebf238c48517c5bb29118e2e 100644 --- a/Final Code/Makefile +++ b/Final Code/Makefile @@ -4,10 +4,10 @@ fact: gcc fonctions.c main.c -o fact -lm -pthread -W -Wall -Werror -ggdb -std=c99 -std=gnu99 val: - valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes ./fact -N 4 test_files/example_input.txt example_output.txt + valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes ./fact -N 4 example_input.txt example_output.txt val_xml: - valgrind --xml=yes --xml-file="valgrind.xml" --leak-check=yes ./fact -N 4 test_files/example_input.txt example_output.txt + valgrind --xml=yes --xml-file="valgrind.xml" --leak-check=yes ./fact -N 4 example_input.txt example_output.txt cpp: cppcheck --enable=all functions.c main.c