diff --git a/Makefile.am b/Makefile.am index 477fa5d2..32eee0fa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -48,6 +48,11 @@ MAINTAINERCLEANFILES = \ test-suite-memcheck.log \ ylwrap +parser: + cat src/parser/seclang-parser.hh | sed "s/return \*new (yyas_ ()) T (t)/return *new (yyas_ ()) T (std::move((T\&)t))/g" > src/parser/seclang-parser.hh.fix && mv src/parser/seclang-parser.hh.fix src/parser/seclang-parser.hh + + + cppcheck: @cppcheck \ --suppressions-list=./test/cppcheck_suppressions.txt \