From 1b805fca00bbcb08a93e555dbad30cc2e01d7329 Mon Sep 17 00:00:00 2001 From: Faure Paul Date: Wed, 29 Jun 2022 19:38:20 +0200 Subject: [PATCH] Clean --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 027f7dc..44e2771 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ default : clean_all : clean clean_Inputs clean_Outputs clean: clean_Lex_Yacc clean_Tables - @rm -f rondoudou_interpreter + @rm -f interpreter clean_Tables: @rm -f Tables/*.o @@ -29,7 +29,7 @@ clean_Outputs: ### COMPILATION ### ########################### build : clean build_Tables build_Lex_Yacc - gcc Lex_Yacc/as.tab.o Lex_Yacc/lex.yy.o Tables/tables.o -ly -o rondoudou_interpreter + gcc Lex_Yacc/as.tab.o Lex_Yacc/lex.yy.o Tables/tables.o -o interpreter build_Tables: clean_Tables gcc -c Tables/tables.c -o Tables/tables.o