From 16df5d825537c0f624f2b8528b5f72179d3feb55 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Tue, 5 Oct 2021 09:49:32 +0200 Subject: [PATCH] Add makefile target for spell checking and all tests --- Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile.am b/Makefile.am index d40494d1..d537135e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -339,3 +339,8 @@ check-unit: tests/unittests/unittests format: $(all_c_sources) clang-format -i $(all_c_sources) + +spell: + codespell + +doublecheck: format check spell