Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [2.2.3] - 2025-12-15

### Fixed
- **Target listing**: Fix duplicate targets appearing after bind-hub restructure (v2.1.1)
- Added `%/project.mk` and `%/config.mk` to filter-out patterns
- Previously `project.mk` was included in both project files and other bind-hub files

## [2.2.2] - 2025-12-15

### Changed
Expand Down
4 changes: 2 additions & 2 deletions core/targets.mk
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ $(strip
$(eval $0_other_files_in_bind_hub_folder := $(filter-out \
$($0_files_project_modules) \
%/mod_info.mk %/mod_config.mk \
%/mb_config.mk %/mb_modules.mk \
%_config.mk %mb_project.mk \
%/mb_config.mk %/mb_modules.mk %/config.mk \
%_config.mk %mb_project.mk %/project.mk \
$(mb_project_bindhub_modules_path)/%, \
$(filter $(mb_project_bindhub_path)/%,$(MAKEFILE_LIST))))

Expand Down