Makefile: Remove `deps` from scripts' dependencies

This is useless because `app` already depends on `deps`. Furthermore,
`deps` is a phony target, and thus always considered outdated. As a
consequence, the scripts' recipe need to always be executed again.

Therefore, adding `deps` again as a dependency just increases the time
to build for nothing.
This commit is contained in:
Jean-Sébastien Pédron 2018-04-05 11:14:24 +02:00
parent 06b5ac2ee8
commit 7f108ae997
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ rabbitmqctl_srcs := mix.exs \
# it's missing. Another way to do it is to use `mix local.hex` but it
# can't be integrated in an alias and doing it from the Makefile isn't
# practical.
$(ACTUAL_ESCRIPTS): $(rabbitmqctl_srcs) deps
$(ACTUAL_ESCRIPTS): $(rabbitmqctl_srcs)
$(gen_verbose) echo y | mix make_all
$(LINKED_ESCRIPTS):