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