mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
to avoid the need for sed'ing the output. This improves performance by avoiding the need for calling additional commands and generating a temporary file.
37 lines
945 B
Plaintext
37 lines
945 B
Plaintext
#----------------------------*- makefile-gmake -*------------------------------
|
|
|
|
ifneq ("$(WM_QUIET)","")
|
|
E=@
|
|
define QUIET_MESSAGE
|
|
@echo " $1: $2";
|
|
endef
|
|
define VERBOSE_MESSAGE
|
|
endef
|
|
else
|
|
E=
|
|
define QUIET_MESSAGE
|
|
endef
|
|
define VERBOSE_MESSAGE
|
|
@echo "$1 $2";
|
|
endef
|
|
endif
|
|
|
|
define DEFINE_TRANSFORM
|
|
$(OBJECTS_DIR)/%.o : %$1
|
|
$(call QUIET_MESSAGE,$(subst .,,$(1))too,$(value <F))
|
|
$E $$($(subst .,,$(1))too)
|
|
endef
|
|
|
|
$(foreach s,$(SUFFIXES),$(eval $(call DEFINE_TRANSFORM,$(s))))
|
|
|
|
$(OBJECTS_DIR)/%.dep : %
|
|
$(call QUIET_MESSAGE,wmkdep,$(<F))
|
|
$(call VERBOSE_MESSAGE,Making dependency list for source file,$(<F))
|
|
@$(WM_SCRIPTS)/makeTargetDir $@
|
|
@$(WMAKE_BIN)/wmkdep \
|
|
-R '$(WM_PROJECT_DIR)/' '$$(WM_PROJECT_DIR)/' \
|
|
-R '$(WM_THIRD_PARTY_DIR)/' '$$(WM_THIRD_PARTY_DIR)/' \
|
|
-I$(*D) $(LIB_HEADER_DIRS) $< > $@
|
|
|
|
#------------------------------------------------------------------------------
|