Show when a file is not being installed
This commit is contained in:
parent
1e84d8bee4
commit
c8e48de301
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue