Skip to content
Merged
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
# the `make` command will point at the `scripts/make` shell script.
# This Makefile is just here to allow auto-completion in the terminal.

# The first target in the makefile is the default goal when no targets are specified.
# Having "help:" here above without any rule (nothing to do specified with a tab)
# only adds dependencies to that target, that is defined through "$(actions):".
# .DEFAULT_GOAL is not necessary here, but is really explicit about what is going on.
help:
.DEFAULT_GOAL: help

actions = \
allrun \
changelog \
Expand Down