Skip to content

Commit

Permalink
Merge pull request #26 from CESNET/makefile-typo
Browse files Browse the repository at this point in the history
makefile - fix typo in HEADER_FILTER
  • Loading branch information
SiskaPavel authored Oct 7, 2024
2 parents f43bdf4 + 2d4d307 commit 88ae5a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ SRC_DIR = "$(shell pwd)/src"
INC_DIR = "$(shell pwd)/include"
EXAMPLES_DIR = "$(shell pwd)/examples"

HEADE_FILTER = "$(SRC_DIR)|$(INC_DIR)|$(EXAMPLE_DIR)"
HEADER_FILTER = "$(SRC_DIR)|$(INC_DIR)|$(EXAMPLES_DIR)"
SOURCE_DIR = "$(SRC_DIR)" "$(INC_DIR)" "$(EXAMPLES_DIR)"
CPP_CHECK_SOURCE_DIR = "$(SRC_DIR)" "$(INC_DIR)"
SOURCE_REGEX = '.*\.\(cpp\|hpp\)'
Expand Down Expand Up @@ -58,11 +58,11 @@ format-fix:

.PHONY: tidy
tidy: all
$(RUN_CLANG_TIDY) -p build -quiet -j $(shell nproc) -header-filter=$(HEADE_FILTER) $(SOURCE_DIR)
$(RUN_CLANG_TIDY) -p build -quiet -j $(shell nproc) -header-filter=$(HEADER_FILTER) $(SOURCE_DIR)

.PHONY: tidy-fix
tidy-fix: all
$(RUN_CLANG_TIDY) -p build -quiet -fix -j $(shell nproc) -header-filter=$(HEADE_FILTER) $(SOURCE_DIR)
$(RUN_CLANG_TIDY) -p build -quiet -fix -j $(shell nproc) -header-filter=$(HEADER_FILTER) $(SOURCE_DIR)

.PHONY: cppcheck
cppcheck: build/Makefile
Expand Down

0 comments on commit 88ae5a4

Please sign in to comment.