From d474a1a7ff669fcba29078069dc603c04c206d26 Mon Sep 17 00:00:00 2001 From: Amlal EL Mahrouss Date: Sun, 9 Jun 2024 20:00:00 +0200 Subject: MHR-21: Fix win64.make Signed-off-by: Amlal EL Mahrouss --- win64.make | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/win64.make b/win64.make index a345da0..e1819a9 100644 --- a/win64.make +++ b/win64.make @@ -50,20 +50,20 @@ all: pre-processor compiler linker .PHONY: pre-processor pre-processor: - $(LINK_CC) $(COMMON_INC) $(PP_SRC) bpp.obj -o $(PP_OUTPUT) + $(LINK_CC) $(COMMON_INC) $(PP_SRC) -o $(PP_OUTPUT) .PHONY: compiler compiler: - $(LINK_CC) $(COMMON_INC) 64x0-cc.obj $(64X0_CC_SRC) -o $(64X0_CC_OUTPUT) + $(LINK_CC) $(COMMON_INC) $(64X0_CC_SRC) -o $(64X0_CC_OUTPUT) $(LINK_CC) $(COMMON_INC) $(AMD64_CXX_SRC) -o $(AMD64_CXX_OUTPUT) - $(LINK_CC) $(COMMON_INC) power-cc.obj $(PPC_CC_SRC) -o $(PPC_CC_OUTPUT) - $(LINK_CC) $(COMMON_INC) i64asm.obj $(IASM_SRC) -o $(IASM_OUTPUT) - $(LINK_CC) $(COMMON_INC) 64asm.obj $(ASM_SRC) -o $(ASM_OUTPUT) - $(LINK_CC) $(COMMON_INC) ppcasm.obj $(PPCASM_SRC) -o $(PPCASM_OUTPUT) + $(LINK_CC) $(COMMON_INC) $(PPC_CC_SRC) -o $(PPC_CC_OUTPUT) + $(LINK_CC) $(COMMON_INC) $(IASM_SRC) -o $(IASM_OUTPUT) + $(LINK_CC) $(COMMON_INC) $(ASM_SRC) -o $(ASM_OUTPUT) + $(LINK_CC) $(COMMON_INC) $(PPCASM_SRC) -o $(PPCASM_OUTPUT) .PHONY: linker linker: - $(LINK_CC) $(COMMON_INC) link.obj $(LINK_SRC) -o $(LINK_OUTPUT) + $(LINK_CC) $(COMMON_INC) $(LINK_SRC) -o $(LINK_OUTPUT) cp $(LINK_OUTPUT) $(LINK_ALT_OUTPUT) cp $(LINK_OUTPUT) $(LINK_ALT_2_OUTPUT) cp $(LINK_OUTPUT) $(LINK_ALT_3_OUTPUT) -- cgit v1.2.3