summaryrefslogtreecommitdiffhomepage
path: root/makefile
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-03 22:32:46 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-03 22:32:46 +0200
commit65835ae45b44c6abf762961a1fd8c1489e2b9a78 (patch)
tree241b090120b4d3b37d94de67ea1db344d2ae94a9 /makefile
parente631e5c0ceda0301a49a879178ba93c5141dccff (diff)
[IMP] Version 1.01: New CLI and new library.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'makefile')
-rw-r--r--makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/makefile b/makefile
index 8efbff2..fb0700b 100644
--- a/makefile
+++ b/makefile
@@ -1,11 +1,11 @@
-.PHONY: build-zpt-core
-build-zpt-core:
- g++ -I./inc $(wildcard src/*.cxx) -std=c++20 -fPIC -shared -o libzpt-core.so
- cp libzpt-core.so /usr/lib
+.PHONY: build-btb-core
+build-btb-core:
+ g++ -I./inc $(wildcard src/*.cxx) -std=c++20 -fPIC -shared -o libbtb.so
+ cp libbtb.so /usr/lib
-.PHONY: build-btbuild
-build-btbuild:
- g++ -I./inc $(wildcard btbuild/*.cxx) -lzpt-core -o btb
+.PHONY: build-btb
+build-btb:
+ g++ -I./inc $(wildcard cli/*.cxx) -lbtb -o btb
cp btb /usr/bin
.PHONY: help