From 2cbfc56c043b98b1cb5504bf4bdd453e77b0d903 Mon Sep 17 00:00:00 2001 From: jzimer_uclouvain <jean-baudouin.zimer@student.uclouvain.be> Date: Fri, 27 Mar 2020 17:27:41 +0100 Subject: [PATCH] =?UTF-8?q?Makefile=20supprim=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index a4ce41a..0000000 --- a/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -all : projet_3 - -projet_3 : projet_3.o test.o - gcc -o projet_3 projet_3.o test.o - - -projet_3.o : projet_3.c - gcc -o projet_3.o -c projet_3.c -W -Wall - - -test.o : test.c projet_3.h - gcc -o test.o -c test.c -W -Wall - - -clean : - rm -rf *.o - -mrproper: clean - rm -rf hello -- GitLab