Displaying 1 result from an estimated 1 matches for "sourcedepend".
2004 Oct 23
1
[LLVMdev] UPDATE: Makefile.rules Changes (IMPORTANT)
...ndencies were generated for the file that included this file,
> -# include the dependencies now...
> -#
> +# If its not one of the cleaning targets
> +ifneq ($strip($(filter-out clean clean-local dist-clean, $(MAKECMDGOALS))),)
>
> -SourceBaseNames := $(basename $(Source))
> -SourceDepend := $(SourceBaseNames:%=$(BUILD_OBJ_DIR)/$(CONFIGURATION)/%.d)
> +# Get the list of dependency files
> +DependFiles := $(basename $(filter %.cpp %.c %.cc, $(SOURCES)))
> +DependFiles := $(patsubst %,$(BUILD_OBJ_DIR)/$(CONFIGURATION)/%.d,$(DependFiles))
> +
> +-include /dev/null $(Depe...