Skip to content

Commit

Permalink
[v15] build: Explicitly make all the default goal/target
Browse files Browse the repository at this point in the history
Add a default goal of `all` to the Makefile so we do not need to rely on
a particular ordering of goals. A recent changed added an early include
that had a diagnosis target which then became the default goal, meaning
`make` on it's own no longer built teleport.
  • Loading branch information
camscale committed Sep 24, 2024
1 parent 0c09fdd commit a0ef37b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
# clean : removes all build artifacts
# test : runs tests

.DEFAULT_GOAL := all

# To update the Teleport version, update VERSION variable:
# Naming convention:
# Stable releases: "1.0.0"
Expand Down

0 comments on commit a0ef37b

Please sign in to comment.