From a1826929ea34acbfe81daf9d64aeba0ec057c8cd Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com> Date: Mon, 8 Apr 2024 09:08:36 +0200 Subject: 64x0: Fix naming of the toolchain. link: Use kDistVersion on -v command. Signed-off-by: Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com> --- makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index e0d960c..9e60e5f 100644 --- a/makefile +++ b/makefile @@ -28,8 +28,8 @@ PP_OUTPUT=Output/bpp.exe SRC_COMMON=Sources/String.cc Sources/AsmKit.cc # C Compiler (PowerPC) -64X0_CC_SRC=Sources/64x000-cc.cc $(SRC_COMMON) -64X0_CC_OUTPUT=Output/64x000-cc.exe +64X0_CC_SRC=Sources/64x0-cc.cc $(SRC_COMMON) +64X0_CC_OUTPUT=Output/64x0-cc.exe # C Compiler PPC_CC_SRC=Sources/ppc-cc.cc $(SRC_COMMON) @@ -60,9 +60,9 @@ compiler: $(WINRES) i64asm.rsrc -O coff -o i64asm.obj $(WINRES) 64asm.rsrc -O coff -o 64asm.obj $(WINRES) ppcasm.rsrc -O coff -o ppcasm.obj - $(WINRES) 64x000-cc.rsrc -O coff -o 64x000-cc.obj + $(WINRES) 64x0-cc.rsrc -O coff -o 64x0-cc.obj $(WINRES) ppc-cc.rsrc -O coff -o ppc-cc.obj - $(LINK_CC) $(COMMON_INC) 64x000-cc.obj $(64X0_CC_SRC) -o $(64X0_CC_OUTPUT) + $(LINK_CC) $(COMMON_INC) 64x0-cc.obj $(64X0_CC_SRC) -o $(64X0_CC_OUTPUT) $(LINK_CC) $(COMMON_INC) ppc-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) -- cgit v1.2.3