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