From 3939adadfecc486173df35e1f54c606a9bb4bb94 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com> Date: Wed, 27 Mar 2024 08:31:41 +0100 Subject: Toolchain: Fix bpp and link, deprecate ccplus (C++ compiler) repurpose all rule to compile everything. Signed-off-by: Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com> --- makefile | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index 156bd11..3992b25 100644 --- a/makefile +++ b/makefile @@ -30,10 +30,6 @@ SRC_COMMON=Sources/String.cc Sources/AsmKit.cc CC_SRC=Sources/cc.cc $(SRC_COMMON) CC_OUTPUT=Output/cc.exe -# C++ Compiler -CXX_SRC=Sources/ccplus.cc $(SRC_COMMON) -CXX_OUTPUT=Output/ccplus.exe - # 64x0 Assembler ASM_SRC=Sources/64asm.cc $(SRC_COMMON) ASM_OUTPUT=Output/64asm.exe @@ -43,8 +39,8 @@ IASM_SRC=Sources/i64asm.cc $(SRC_COMMON) IASM_OUTPUT=Output/i64asm.exe .PHONY: all -all: - @echo "Use a specific target." +all: pp cl link + @echo "DONE." .PHONY: pp pp: @@ -53,7 +49,6 @@ pp: .PHONY: cl cl: $(LINK_CC) $(COMMON_INC) $(CC_SRC) -o $(CC_OUTPUT) - $(LINK_CC) $(COMMON_INC) $(CXX_SRC) -o $(CXX_OUTPUT) $(LINK_CC) $(COMMON_INC) $(IASM_SRC) -o $(IASM_OUTPUT) $(LINK_CC) $(COMMON_INC) $(ASM_SRC) -o $(ASM_OUTPUT) -- cgit v1.2.3