From b2c3e134b968e75faf6db29536755f0304c63b64 Mon Sep 17 00:00:00 2001 From: Amlal Date: Tue, 22 Oct 2024 21:15:15 +0200 Subject: IMP: Refactor: Rename inc/ folder to BTBKit/ Signed-off-by: Amlal --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index c789bf4..d8851f1 100644 --- a/makefile +++ b/makefile @@ -1,16 +1,16 @@ .PHONY: build-btb-core build-btb-core: - sudo g++ -I./inc I./vendor $(wildcard src/*.cxx) -std=c++20 -fPIC -shared -o libbtb.so + sudo g++ -I./BTBKit I./vendor $(wildcard src/*.cxx) -std=c++20 -fPIC -shared -o libbtb.so sudo cp libbtb.so /usr/local/lib .PHONY: build-btb build-btb: - sudo g++ -I./inc I./vendor $(wildcard cli/*.cxx) $(wildcard src/*.cxx) -std=c++20 -L/usr/local -lbtb -o btb + sudo g++ -I./BTBKit I./vendor $(wildcard cli/*.cxx) $(wildcard src/*.cxx) -std=c++20 -L/usr/local -lbtb -o btb sudo cp btb /usr/local/bin .PHONY: build-btb-windows build-btb-windows: - x86_64-w64-mingw32-g++.exe -I./inc -I./vendor $(wildcard cli/*.cxx) $(wildcard src/*.cxx) -std=c++20 -o btb.exe + x86_64-w64-mingw32-g++.exe -I./BTBKit -I./vendor $(wildcard cli/*.cxx) $(wildcard src/*.cxx) -std=c++20 -o btb.exe .PHONY: help help: -- cgit v1.2.3