Use local grammars instead of installed

This commit is contained in:
Bruce Hill 2021-05-20 16:24:41 -07:00
parent 8e712a83d4
commit cd30e89042

View File

@ -30,11 +30,11 @@ clean:
rm -f $(NAME) $(OBJFILES)
test: $(NAME)
./$(NAME) -g grammars/bp.bp -p Grammar grammars/bp.bp
./$(NAME) -g ./grammars/bp.bp -p Grammar ./grammars/bp.bp
leaktest:
make G=-ggdb O=-O0 EXTRA=-DDEBUG_HEAP clean bp
valgrind --leak-check=full ./bp -l -g grammars/bp.bp -p Grammar grammars/bp.bp
valgrind --leak-check=full ./bp -l -g ./grammars/bp.bp -p Grammar ./grammars/bp.bp
splint:
splint -posix-lib -weak -unrecog -initallelements -fullinitblock $(CFILES) bp.c