summaryrefslogtreecommitdiffhomepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-18 08:45:58 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-18 08:45:58 +0100
commitb21246fbf4b082e21f811d488bd85e8dafdee428 (patch)
tree86d0ff4cfb91cf609071c900f2d400ecb89bdba2 /GNUmakefile
parentc782117221f0b8f0bb018df673f935c1791fee32 (diff)
feat: CMake file, new entries to gitignore, and code under BSD-3 now.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index b05411c..44dbfeb 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,3 +1,8 @@
+# // ============================================================= //
+# // nebuild
+# // Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under BSD-3 license.
+# // ============================================================= //
+
SUDO=sudo
GCC=g++
GCC_MINGW=x86_64-w64-mingw32-g++
@@ -10,15 +15,16 @@ CP=cp
.PHONY: build-nebuild
build-nebuild:
$(SUDO) $(GCC) $(CXXFLAGS) $(SRC) $(CXXSTD) -o $(OUT)
- $(SUDO) $(CP) $(OUT) /usr/local/bin
+ @echo "=> NeBuild built successfully for POSIX."
.PHONY: build-nebuild-windows
build-nebuild-windows:
$(GCC_MINGW) $(CXXFLAGS) $(SRC) -o $(OUT).exe
+ @echo "=> NeBuild built successfully for Windows."
.PHONY: help
help:
- @echo "NEBUILD => HELP"
+ @echo "=> NEBUILD HELP:"
@echo "=> help: Show this help message."
@echo "=> build-nebuild-windows: Build NeBuild for Windows."
@echo "=> build-nebuild: Build NeBuild for POSIX."