mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
Display a message when directories are created
svn path=/trunk/; revision=32290
This commit is contained in:
parent
93ef049ff9
commit
d3037c8cdb
1 changed files with 7 additions and 0 deletions
|
@ -365,15 +365,22 @@ INSTALL_ := $(INSTALL)$(SEP)
|
|||
RBUILD_FLAGS := -rReactOS-$(ARCH).rbuild -DARCH=$(ARCH)
|
||||
|
||||
$(INTERMEDIATE):
|
||||
$(ECHO_MKDIR)
|
||||
${mkdir} $@
|
||||
|
||||
ifneq ($(INTERMEDIATE),$(OUTPUT))
|
||||
$(OUTPUT):
|
||||
$(ECHO_MKDIR)
|
||||
${mkdir} $@
|
||||
endif
|
||||
|
||||
ifneq ($(TEMPORARY),$(INTERMEDIATE))
|
||||
ifneq ($(TEMPORARY),$(OUTPUT))
|
||||
$(TEMPORARY):
|
||||
$(ECHO_MKDIR)
|
||||
${mkdir} $@
|
||||
endif
|
||||
endif
|
||||
|
||||
BUILDNO_H = $(INTERMEDIATE_)include$(SEP)reactos$(SEP)buildno.h
|
||||
|
||||
|
|
Loading…
Reference in a new issue