mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
12 lines
299 B
Plaintext
12 lines
299 B
Plaintext
|
#
|
||
|
# Default rules for running cppcheck against the the user space components.
|
||
|
#
|
||
|
|
||
|
PHONY += cppcheck
|
||
|
|
||
|
CPPCHECKFLAGS = --std=c99 --quiet --max-configs=1 --error-exitcode=2
|
||
|
CPPCHECKFLAGS += --inline-suppr -U_KERNEL
|
||
|
|
||
|
cppcheck:
|
||
|
$(CPPCHECK) -j$(CPU_COUNT) $(CPPCHECKFLAGS) $(DEFAULT_INCLUDES) $(SOURCES)
|