aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-10-10 09:48:31 -0400
committerClyne Sullivan <clyne@bitgloo.com>2023-10-10 09:48:31 -0400
commitd7cd899653531ac5a8def9e9697b0d65b438b773 (patch)
tree0ae570693a9f549b940f7672bbdf69b710d48ee2 /firmware/Makefile
parentf3c28dd2f1a27ee8039a86942ccd2277fbb4102e (diff)
small fixes; add compile checksHEADmain
Diffstat (limited to 'firmware/Makefile')
-rw-r--r--firmware/Makefile15
1 files changed, 13 insertions, 2 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index 0db249b..542bcea 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -162,10 +162,10 @@ INCDIR = $(CONFDIR) $(ALLINC) $(TESTINC) \
source source/periph
# Define C warning options here.
-CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes -pedantic
+CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes -pedantic -Werror
# Define C++ warning options here.
-CPPWARN = -Wall -Wextra -Wundef -pedantic -Wno-volatile
+CPPWARN = -Wall -Wextra -Wundef -pedantic -Wno-volatile -Werror -Wconversion
#
# Project, target, sources and paths
@@ -217,6 +217,17 @@ include $(RULESPATH)/rules.mk
# Custom rules
#
+check:
+ cppcheck --std=c++17 --enable=warning,style,performance,portability --force $(shell find source/ -name "*.cpp" -or -name "*.hpp" -or -name "*.c" -or -name "*.h" -type f)
+
+tidy:
+ clang-tidy \
+ -warnings-as-errors=* \
+ --extra-arg=-I --extra-arg=/usr/lib/gcc/arm-none-eabi/13/include/g++-v13 \
+ --extra-arg=-I --extra-arg=/usr/lib/gcc/arm-none-eabi/13/include/g++-v13/arm-none-eabi \
+ $(CPPSRC)
+
#
# Custom rules
##############################################################################
+