849d8284c5
Current Makefile system allows using foo.o-cflags variables to store object-specific CFLAGS. Convert some usages of old syntax (using QEMU_CFLAGS += construct) to the new syntax. Do not touch multifile modules for now, as build system isn't ready for this. Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
9 lines
206 B
Makefile
9 lines
206 B
Makefile
common-obj-y += rng.o rng-egd.o
|
|
common-obj-$(CONFIG_POSIX) += rng-random.o
|
|
|
|
common-obj-y += msmouse.o
|
|
common-obj-$(CONFIG_BRLAPI) += baum.o
|
|
baum.o-cflags := $(SDL_CFLAGS)
|
|
|
|
common-obj-$(CONFIG_TPM) += tpm.o
|