Skip to content

Commit

Permalink
Makefile: Exclude cmd/internal from make [all] target (#2536)
Browse files Browse the repository at this point in the history
The directory is a Go lib package, not an application.
  • Loading branch information
roman-khimov authored Aug 30, 2023
2 parents 5955244 + 52a4d8e commit 9279fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RELEASE = release
DIRS = $(BIN) $(RELEASE)

# List of binaries to build.
CMDS = $(notdir $(basename $(wildcard cmd/*)))
CMDS = $(filter-out internal, $(notdir $(basename $(wildcard cmd/*))))
BINS = $(addprefix $(BIN)/, $(CMDS))

# .deb package versioning
Expand Down

0 comments on commit 9279fde

Please sign in to comment.