diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -63,7 +63,18 @@ uninstall: # Personal workflow targets # -dev-check: check public + +VALGRIND_FLAGS = \ + --show-error-list=yes \ + --show-leak-kinds=all \ + --leak-check=full \ + --track-origins=yes \ + --error-exitcode=1 + +c-dev-check: check + valgrind $(VALGRIND_FLAGS) ./src/gistatic.t + +dev-check: c-dev-check public sh aux/assert-shellcheck.sh sh aux/workflow/assert-todos.sh sh aux/workflow/assert-changelog.sh -n $(NAME) |