From af9bbb52e4588b4705ebc5c2fddc0e91ab3f8a99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Colasse?= <melanie.colasse@student.uclouvain.be> Date: Fri, 1 May 2020 15:30:49 +0200 Subject: [PATCH] Upload New File --- projet k3/makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 projet k3/makefile diff --git a/projet k3/makefile b/projet k3/makefile new file mode 100644 index 0000000..76c370a --- /dev/null +++ b/projet k3/makefile @@ -0,0 +1,14 @@ +all: fact + ./fact -N 4 ./example_input.txt ./output.txt + +fact: fact.o + gcc -o fact fact.o -lcunit -lpthread -lm + +fact.o: fact.c + gcc -o fact.o -c fact.c -W -Wall -pedantic -std=gnu99 + +test: + +clean: + rm -rf fact + rm -rf ./fact.o -- GitLab