make: Replace "pereq" in targets by "deps"

"prereq" is simply impossible to use in explanations with a straight face.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2019-12-07 19:21:08 +00:00
commit 6bdb16878a
6 changed files with 22 additions and 22 deletions

View file

@ -33,7 +33,7 @@ distclean: clean
mocclean \
objclean \
pckgclean \
prereqclean \
depsclean \
profclean \
push \
rccclean \
@ -106,7 +106,7 @@ libclean:
vcdistclean:
$(RM) -rf *.plg *.opt *.ncb Debug *.exe dist *.ilk
prereqclean:
depsclean:
set -e; for dir in $(PREREQ_DIR); do make -$(MAKEFLAGS) -C $$dir clean; done
profclean:
@ -222,7 +222,7 @@ echo-include:
echo-mk:
@echo MAKEFILE_LIST = $(MAKEFILE_LIST)
echo-prereq:
echo-deps:
@echo "PREREQ_BUILD = $(sort $(PREREQ_BUILD))"
@echo "PREREQ_INSTALL = $(sort $(PREREQ_INSTALL))"
@echo "PREREQ_RUN = $(sort $(PREREQ_RUN))"