[PATCH] testbot/TestLauncher: Fix a couple of GNU make dependencies.

Francois Gouget fgouget at codeweavers.com
Mon Sep 2 20:52:33 CDT 2019


Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
 testbot/src/TestLauncher/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testbot/src/TestLauncher/Makefile b/testbot/src/TestLauncher/Makefile
index 6b41e018..b040353d 100644
--- a/testbot/src/TestLauncher/Makefile
+++ b/testbot/src/TestLauncher/Makefile
@@ -9,7 +9,7 @@ CROSSZIPEXE  = upx-ucl
 all: TestLauncher32.exe TestLauncher64.exe
 
 TestLauncher32.exe: TestLauncher.c
-	$(CROSSCC32) -Wall -o $@ $<
+	$(CROSSCC32) -Wall -o $@ TestLauncher.c
 	$(CROSSSTRIP32) $@
 	if which $(CROSSZIPEXE); \
 	then \
@@ -17,7 +17,7 @@ TestLauncher32.exe: TestLauncher.c
 	fi
 
 TestLauncher64.exe: TestLauncher.c
-	$(CROSSCC64) -Wall -o $@ $<
+	$(CROSSCC64) -Wall -o $@ TestLauncher.c
 	$(CROSSSTRIP64) $@
 	if which $(CROSSZIPEXE); \
 	then \
-- 
2.20.1




More information about the wine-devel mailing list