diff options
| author | Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com> | 2024-04-08 09:08:36 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com> | 2024-04-08 09:10:29 +0200 |
| commit | a1826929ea34acbfe81daf9d64aeba0ec057c8cd (patch) | |
| tree | 708f36c4066f696e503ce5511a528d30fffbc0f1 /makefile | |
| parent | f6d59295a226ede1bd61c60493e83ba48cd6dd27 (diff) | |
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>
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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) |
