Zebediah Figura : build: Do not make cross-compiled import libs an explicit dependency of the "crosstest" targets.

Alexandre Julliard julliard at winehq.org
Tue Apr 5 15:38:54 CDT 2022


Module: vkd3d
Branch: master
Commit: 2f082de90411eb6b252352e05142e0e9d65921fe
URL:    https://source.winehq.org/git/vkd3d.git/?a=commit;h=2f082de90411eb6b252352e05142e0e9d65921fe

Author: Zebediah Figura <zfigura at codeweavers.com>
Date:   Fri Apr  1 16:01:12 2022 -0500

build: Do not make cross-compiled import libs an explicit dependency of the "crosstest" targets.

Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 Makefile.am | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 3549cce5..c93b2062 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -449,9 +449,9 @@ CROSS32_EXEFILES = $(vkd3d_cross_tests:=.cross32.exe)
 if BUILD_DEMOS
 CROSS32_EXEFILES += $(vkd3d_demos:demos/vkd3d-%=demos/%.cross32.exe)
 endif
-CROSS32_FILES = $(CROSS32_IMPLIBS) $(CROSS32_EXEFILES) tests/shader_runner.cross32.exe
+CROSS32_FILES = $(CROSS32_EXEFILES) tests/shader_runner.cross32.exe
 
-CLEANFILES += $(CROSS32_FILES)
+CLEANFILES += $(CROSS32_IMPLIBS) $(CROSS32_FILES)
 crosstest32: $(CROSS32_FILES)
 
 -include tests/$(DEPDIR)/*.cross32.Po
@@ -483,9 +483,9 @@ CROSS64_EXEFILES = $(vkd3d_cross_tests:=.cross64.exe)
 if BUILD_DEMOS
 CROSS64_EXEFILES += $(vkd3d_demos:demos/vkd3d-%=demos/%.cross64.exe)
 endif
-CROSS64_FILES = $(CROSS64_IMPLIBS) $(CROSS64_EXEFILES) tests/shader_runner.cross64.exe
+CROSS64_FILES = $(CROSS64_EXEFILES) tests/shader_runner.cross64.exe
 
-CLEANFILES += $(CROSS64_FILES)
+CLEANFILES += $(CROSS64_IMPLIBS) $(CROSS64_FILES)
 crosstest64: $(CROSS64_FILES)
 
 -include tests/$(DEPDIR)/*.cross64.Po




More information about the wine-cvs mailing list