Il 24/07/2012 13:38, Andreas Färber ha scritto: >> > +$(foreach var,$(nested-vars), $(eval \ >> > + -include $(addsuffix *.d, $(sort $(dir $($(var))))))) >> > endef >> > > Are you sure? Dependencies are not guaranteed to be in one of the > unnested variables, thought we ran into some issues earlier... In > particular I'm thinking of tcg/*.d and of *.d in .user, .target, those > that are actually recursed into.
obj-y is a nested variable: nested-vars += obj-y # This resolves all nested paths, so it must come last include $(SRC_PATH)/Makefile.objs $(dir $(obj-y)) contains tcg/ and from there you get tcg/*.d. The only makefile that doesn't use the nesting mechanism is tests/Makefile. Paolo