From a72ac5ecba4381397823bfe5e06e863d7ab3339f Mon Sep 17 00:00:00 2001 From: Faure Paul Date: Wed, 29 Jun 2022 19:37:44 +0200 Subject: [PATCH] Clean --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 37bbfa9..ed1a8c0 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ default : ### NETTOYAGE ### ########################### clean : clean_Symboles clean_Instructions clean_Lex_Yacc clean_Fonctions - @rm -f rondoudou_gcc + @rm -f compiler @rm -f output.txt clean_Symboles: @@ -31,7 +31,7 @@ clean_Lex_Yacc: ### COMPILATION ### ########################### build : clean build_Symboles build_Instructions build_Lex_Yacc build_Fonctions - gcc Lex_Yacc/as.tab.o Lex_Yacc/lex.yy.o Tables/Instructions/tab_instruc.o Tables/Symboles/table_symboles.o Tables/Fonctions/tab_fonctions.o -ly -o rondoudou_gcc + gcc Lex_Yacc/as.tab.o Lex_Yacc/lex.yy.o Tables/Instructions/tab_instruc.o Tables/Symboles/table_symboles.o Tables/Fonctions/tab_fonctions.o -o compiler build_Symboles: clean_Symboles gcc -c Tables/Symboles/table_symboles.c -o Tables/Symboles/table_symboles.o @@ -69,7 +69,7 @@ test_Fonctions: build_Fonctions Tables/Fonctions/test test: build - cat Fichiers_Tests/progC | ./rondoudou_gcc + cat Fichiers_Tests/progC | ./compiler