sandbox/bugs/src_ast_makefile.c
The problme is in src/ast/Makefile
grammar: grammar.c
cc -Wall grammar.c -o grammarMy old cc binary fail to compile grammar.c. I think it
should be
grammar: grammar.c
$(CC) -Wall grammar.c -o grammarThe problme is in src/ast/Makefile
grammar: grammar.c
cc -Wall grammar.c -o grammarMy old cc binary fail to compile grammar.c. I think it
should be
grammar: grammar.c
$(CC) -Wall grammar.c -o grammar