Show when a file is not being installed

This commit is contained in:
Tom Willemsen 2012-12-06 13:05:31 +01:00
parent 1e84d8bee4
commit c8e48de301

View file

@ -33,7 +33,9 @@ $(modules): %:
@$(MAKE) -C $*
$(install-objects): install-%: %
$(if $(call newer,$*),install -pDm $(MODE) "$*" "$(DESTDIR)/$*")
$(if $(call newer,$*), \
install -pDm $(MODE) "$*" "$(DESTDIR)/$*", \
@echo -e "$(FG_YEL)$*$(CLR_RE) is $(FG_RED)not newer$(CLR_RE)")
$(install-modules): install-%:
@$(MAKE) -C $* install