1
0

Ajout du but "mrproper"

- 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
This commit is contained in:
Lyanis SOUIDI 2022-11-29 09:17:01 +01:00
parent 578ba3537e
commit a4019bb775

View File

@ -29,6 +29,9 @@ run : $(EXE)
clean :
-rm -rf $(ODIR)
mrproper :
clean but
### BUTS FACTICES ###
.PHONY : but start clean
.PHONY : but run clean mrproper