mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
30fd45adb2
Avoid 'make clean' producing an 'rm' command which has a lot of duplicate 'hw//*.o' arguments, by using $(sort $(dir ..)) rather than $(dir $(sort ..)) so Make's sort function will remove the duplicates for us. We can also remove the double '//' safely because $(dir ..) is guaranteed to return a string ending in '/'. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
26 lines
585 B
Text
26 lines
585 B
Text
# 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))))
|
|
|
|
# Include automatically generated dependency files
|
|
-include $(patsubst %.o, %.d, $(hw-obj-y))
|