summaryrefslogtreecommitdiffhomepage
path: root/makefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-29 10:56:20 +0200
committerGitHub <noreply@github.com>2025-05-29 10:56:20 +0200
commit50c2c9773d5660b1497a1132ffa96a7ab10d9c45 (patch)
tree9e38258948019249d64b90a27707ad3ed36bb186 /makefile
parentdab3762388278d1efadec1040a8f5c5ebd286b24 (diff)
parent61fc36d7fb3d147b577c1d25a72e22e45f6c6c83 (diff)
Merge pull request #2 from nekernel-org/dev
0.0.2
Diffstat (limited to 'makefile')
-rw-r--r--makefile23
1 files changed, 0 insertions, 23 deletions
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."