aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2019-12-12 13:30:36 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2020-08-21 06:30:42 -0400
commit484e2cc730a86f7066b3e29c5bb8440747b61f01 (patch)
treeecd5fc55434ad0c0015fb7313e99df2da3f64950 /Makefile
parentd3ca592b3c10ba3d340e28f68a9a155dacdf4446 (diff)
rules.mak: drop unneeded macros
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index f442895309..f33ec16a81 100644
--- a/Makefile
+++ b/Makefile
@@ -142,7 +142,7 @@ endif
include $(SRC_PATH)/tests/Makefile.include
-all: recurse-all modules
+all: recurse-all
# LIBFDT_lib="": avoid breaking existing trees with objects requiring -fPIC
DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_lib=""
@@ -197,7 +197,7 @@ clean: recurse-clean ninja-clean clean-ctlist
-test -f ninjatool && ./ninjatool $(if $(V),-v,) -t clean
# avoid old build problems by removing potentially incorrect old files
rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
- find . \( -name '*.so' -o -name '*.dll' -o -name '*.mo' -o -name '*.[oda]' \) -type f \
+ find . \( -name '*.so' -o -name '*.dll' -o -name '*.[oda]' \) -type f \
! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-aarch64.a \
! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-arm.a \
! -path ./roms/edk2/BaseTools/Source/Python/UPT/Dll/sqlite3.dll \
@@ -382,9 +382,6 @@ print-help = $(quiet-@)$(call print-help-run,$1,$2)
help:
@echo 'Generic targets:'
$(call print-help,all,Build all)
-ifdef CONFIG_MODULES
- $(call print-help,modules,Build all modules)
-endif
$(call print-help,dir/file.o,Build specified target only)
$(call print-help,install,Install QEMU, documentation and tools)
$(call print-help,ctags/TAGS,Generate tags file for editors)