Hi Sebastian
done.
I still don't sure but I think that prerequsites defined in this way
doesn't calculated and thus the your target will not build when it
should be.
What can be done is:
====================
TARGETS_LIST = a.b c.d d.e f.g
SRCDIR = some_path
$(TARGETS_LIST):
DEPS.d: $(TARGETS_LIST)
for file in $(TARGETS_LISTS) do \
create line of form "DEPS.d x.y: x y"
and append it to DEPS.d
done
include DEPS.d
Dmitry