From 304f18f6c91834b7a609483aebb32329f2f81690 Mon Sep 17 00:00:00 2001 From: Giovanna Stefanelli <giovanna.stefanelli@student.uclouvain.be> Date: Thu, 14 May 2020 16:47:07 +0200 Subject: [PATCH] Update Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 55a546e..b00d4f4 100644 --- a/Makefile +++ b/Makefile @@ -6,14 +6,14 @@ CC = gcc # The option -Werror convert warning into error -FLAGS = -Werror -pthread +FLAGS = -Wall -Werror -pthread #TEST_FLAGS = -I${HOME}/local/include} -L${HOME}/local/lib -Wall -lcunit fact: fact.c $(CC) $(FLAGS) fact.c -o fact -lm echo "fact.c file compiled" - # File provinding wrong numbers (negative, <2, 0), command: + # Check wrong numbers (negative, <2, 0, large numbers, etc.) with the command: # ./fact incorrect_numbers.txt out.txt test: Fact_UnitTest.c -- GitLab