Francois Gouget : testbot/TestLauncher: Fix a couple of GNU make dependencies.
Module: tools Branch: master Commit: 5e9a7f7b9fe5ab840055e017bb9ce6881b61c6d1 URL: https://source.winehq.org/git/tools.git/?a=commit;h=5e9a7f7b9fe5ab840055e017... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Tue Sep 3 03:52:33 2019 +0200 testbot/TestLauncher: Fix a couple of GNU make dependencies. Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- 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 6b41e01..b040353 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 \
participants (1)
-
Alexandre Julliard