1435ddb89c
After commit dcff25f2cd
, Dependency file
are taken from the directories that have a Makefile.objs file. This is
not enough, since files can be included from other directories.
So, pick them from directories that have an object file in them.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
24 lines
490 B
Makefile
24 lines
490 B
Makefile
# Makefile for qemu target independent devices.
|
|
|
|
include ../config-host.mak
|
|
include ../config-all-devices.mak
|
|
include config.mak
|
|
include $(SRC_PATH)/rules.mak
|
|
|
|
.PHONY: all
|
|
|
|
$(call set-vpath, $(SRC_PATH))
|
|
|
|
QEMU_CFLAGS+=-I..
|
|
QEMU_CFLAGS += -I$(SRC_PATH)/include
|
|
|
|
include $(SRC_PATH)/Makefile.objs
|
|
|
|
all: $(hw-obj-y)
|
|
# Dummy command so that make thinks it has done something
|
|
@true
|
|
|
|
clean:
|
|
rm -f $(addsuffix *.o, $(sort $(dir $(hw-obj-y))))
|
|
rm -f $(addsuffix *.d, $(sort $(dir $(hw-obj-y))))
|