From e0b3869075eb6dd4d2d515f80056e2eeb1128fae Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 22 May 2025 10:22:16 +0200 Subject: feat(btb)!: Introducing libBTB, better API. also: - The Codebase has been improved. - Error codes are now string messages. Signed-off-by: Amlal El Mahrouss --- makefile | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile deleted file mode 100644 index 8884c33..0000000 --- a/makefile +++ /dev/null @@ -1,23 +0,0 @@ -SUDO=sudo -GCC=g++ -GCC_MINGW=x86_64-w64-mingw32-g++ -CXXFLAGS=-I./lib -I./vendor -CXXSTD= -std=c++20 -SRC=$(wildcard cli/*.cc) $(wildcard src/*.cc) -OUT=btb -CP=cp - -.PHONY: build-btb -build-btb: - $(SUDO) $(GCC) $(CXXFLAGS) $(SRC) $(CXXSTD) -o $(OUT) - $(SUDO) $(CP) $(OUT) /usr/local/bin - -.PHONY: build-btb-windows -build-btb-windows: - $(GCC_MINGW) $(CXXFLAGS) $(SRC) -o $(OUT).exe - -.PHONY: help -help: - @echo "=> help: Show this help message." - @echo "=> build-btb-windows: Build BTB for Windows." - @echo "=> build-btb: Build BTB for POSIX." -- cgit v1.2.3