Il 16/01/2014 13:40, Fam Zheng ha scritto: > , compared to > > $(obj)/foo.mo-objs := $(obj)/bar.o $(obj)/biz.o $(obj)/qux.o > > or slightly better > > $(obj)/foo.mo-objs := $(addprefix $(obj), bar.o, biz.o, qux.o) > > I've already converted block/curl.o's cflags to this, later in this series. So > yes I think this is a better syntax.
Also the previous mechanism is not usable for libraries, so that we have to add them to libs_softmmu and/or libs_tools manually in the configure script. So the new scheme is easier as well as more flexible. Paolo