Displaying 4 results from an estimated 4 matches for "dependfiles".
2007 Jul 23
2
[LLVMdev] Usage of /dev/null in makefiles wrong
...ted, the init scripts didn't
have set the right locale. So in the first few hours after I
turned my box on, it's timestamp is in the future.
But hey, it's odd that /dev/null is a "make" target anyway.
When I change line 1474 in Makefile.rules from
-include /dev/null $(DependFiles
to
-include $(DependFiles
then this strange and weird warning vanishes.
2007 Jul 23
0
[LLVMdev] Usage of /dev/null in makefiles wrong
...future.
>
> But hey, it's odd that /dev/null is a "make" target anyway.
Three years I've been looking at these makefiles and I never noticed
that before. Truly bizarre.
>
>
>
> When I change line 1474 in Makefile.rules from
>
> -include /dev/null $(DependFiles
>
> to
>
> -include $(DependFiles
Yup, works for me too. I think someone was trying to get around
$(DependFiles) being empty, but that's what the - is for !
Reid.
>
> then this strange and weird warning vanishes.
> _______________________________________________
>...
2004 Oct 23
1
[LLVMdev] UPDATE: Makefile.rules Changes (IMPORTANT)
...ts 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 $(DependFiles)
>
> -#
> -# Include dependencies generated from C/C++ source files, but not if we
> -# are cleanin...
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid,
I think it is the first time it is run that the errors occcur !?
Not sure but that would seem logical.
Aaron