From a4019bb775ae358b00502c872e0cfce7a72a5bd7 Mon Sep 17 00:00:00 2001 From: Lyanis Souidi Date: Tue, 29 Nov 2022 09:17:01 +0100 Subject: [PATCH] Ajout du but "mrproper" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Création du but "mrproper" permettant de supprimer tous les fichiers de sortie puis de compiler le programme - Ajout du but "run" à la liste des buts factices --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6d31c32..0779f1e 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,9 @@ run : $(EXE) clean : -rm -rf $(ODIR) +mrproper : + clean but + ### BUTS FACTICES ### -.PHONY : but start clean +.PHONY : but run clean mrproper