diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-08-17 11:34:47 +0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-08-21 06:30:32 -0400 |
commit | b53d555f6907434afc93d78cf316f10598b2853c (patch) | |
tree | afacbe22fbdc6810d5a0dc274d1ac1b6f9b64942 /hw/adc | |
parent | a9d4825542510e6d9483e29fb8e3761397eaada1 (diff) |
meson: convert hw/adc
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/adc')
-rw-r--r-- | hw/adc/Makefile.objs | 1 | ||||
-rw-r--r-- | hw/adc/meson.build | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/hw/adc/Makefile.objs b/hw/adc/Makefile.objs deleted file mode 100644 index 2b9dc36c7f..0000000000 --- a/hw/adc/Makefile.objs +++ /dev/null @@ -1 +0,0 @@ -common-obj-$(CONFIG_STM32F2XX_ADC) += stm32f2xx_adc.o diff --git a/hw/adc/meson.build b/hw/adc/meson.build new file mode 100644 index 0000000000..0d62ae96ae --- /dev/null +++ b/hw/adc/meson.build @@ -0,0 +1 @@ +softmmu_ss.add(when: 'CONFIG_STM32F2XX_ADC', if_true: files('stm32f2xx_adc.c')) |