This commit is contained in:
Faure Paul 2022-06-29 19:38:50 +02:00
parent 510d9c2d6c
commit 20a372f29a

View file

@ -9,7 +9,7 @@ default :
clean_all : clean clean_Inputs clean_Outputs clean_all : clean clean_Inputs clean_Outputs
clean: clean_Lex_Yacc clean_Tables clean: clean_Lex_Yacc clean_Tables
@rm -f rondoudou_interpreter_registres @rm -f interpreter_registers
clean_Tables: clean_Tables:
@rm -f Tables/*.o @rm -f Tables/*.o
@ -29,7 +29,7 @@ clean_Outputs:
### COMPILATION ### ### COMPILATION ###
########################### ###########################
build : clean build_Tables build_Lex_Yacc 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_registres gcc Lex_Yacc/as.tab.o Lex_Yacc/lex.yy.o Tables/tables.o -o interpreter_registers
build_Tables: clean_Tables build_Tables: clean_Tables
gcc -c Tables/tables.c -o Tables/tables.o gcc -c Tables/tables.c -o Tables/tables.o