diff options
author | Fam Zheng <famz@redhat.com> | 2014-10-28 16:47:54 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-10-31 11:26:25 +0100 |
commit | 2d38853239ac17984e81fee169d80384784c6401 (patch) | |
tree | afd359001eb880d6b5c83d3d9ed0201965ca72e9 /rules.mak | |
parent | 4239e2dc018c0defdbad35d387051ca2b208889d (diff) | |
download | qemu-2d38853239ac17984e81fee169d80384784c6401.tar.gz qemu-2d38853239ac17984e81fee169d80384784c6401.tar.bz2 qemu-2d38853239ac17984e81fee169d80384784c6401.zip |
rules.mak: Allow .mo-objs and .mo-cflags in -y variables
Expand %.mo-objs in -y nested objects, so that we can write combined
object -cflags rules like what will be done in the coming patch.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'rules.mak')
-rw-r--r-- | rules.mak | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -362,4 +362,9 @@ define unnest-vars # Include all the .d files $(eval -include $(addsuffix *.d, $(sort $(dir $($v))))) $(eval $v := $(filter-out %/,$($v)))) + + # For all %.mo objects that are directly added into -y, expand them to %.mo-objs + $(foreach v,$2, + $(eval $v := $(foreach o,$($v),$(if $($o-objs),$($o-objs),$o)))) + endef |