summaryrefslogtreecommitdiffhomepage
path: root/src/CommandLine
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-27 08:56:24 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-27 08:56:24 +0100
commita936410849e4df5598d9edb11132153a4f7e64f6 (patch)
tree5654054528b3d00d97ad1933b8220dab749658e0 /src/CommandLine
parentd532b43153cb68d6e92c5dac58cbd3c8ab4f60af (diff)
cl! giant source code refactor.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/CommandLine')
-rw-r--r--src/CommandLine/asm.cc10
-rw-r--r--src/CommandLine/cppdrv.cc10
-rw-r--r--src/CommandLine/dbg.cc10
-rw-r--r--src/CommandLine/kdbg.cc10
-rw-r--r--src/CommandLine/ld64.cc10
-rw-r--r--src/CommandLine/pef-amd64-cxxdrv.cc10
6 files changed, 24 insertions, 36 deletions
diff --git a/src/CommandLine/asm.cc b/src/CommandLine/asm.cc
index 1602e89..12d179a 100644
--- a/src/CommandLine/asm.cc
+++ b/src/CommandLine/asm.cc
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
/// @file asm.cc
/// @brief Assembler frontend.
@@ -93,4 +92,3 @@ Int32 main(Int32 argc, Char const* argv[]) {
return EXIT_SUCCESS;
}
-
diff --git a/src/CommandLine/cppdrv.cc b/src/CommandLine/cppdrv.cc
index 8bc019f..d5d2cd0 100644
--- a/src/CommandLine/cppdrv.cc
+++ b/src/CommandLine/cppdrv.cc
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
/// @file cppdrv.cc
/// @brief Nectar frontend preprocessor.
@@ -21,4 +20,3 @@ int main(int argc, char const* argv[]) {
return NECTAR_SUCCESS;
}
-
diff --git a/src/CommandLine/dbg.cc b/src/CommandLine/dbg.cc
index af1c33f..5b08a69 100644
--- a/src/CommandLine/dbg.cc
+++ b/src/CommandLine/dbg.cc
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#include <CompilerKit/Detail/Config.h>
@@ -16,4 +15,3 @@ CK_IMPORT_C Int32 DebuggerMachPOSIX(Int32 argc, Char const* argv[]);
Int32 main(Int32 argc, Char const* argv[]) {
return DebuggerMachPOSIX(argc, argv);
}
-
diff --git a/src/CommandLine/kdbg.cc b/src/CommandLine/kdbg.cc
index 67fb827..148efb3 100644
--- a/src/CommandLine/kdbg.cc
+++ b/src/CommandLine/kdbg.cc
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#include <CompilerKit/Detail/Config.h>
@@ -16,4 +15,3 @@ CK_IMPORT_C Int32 DebuggerNeKernel(Int32 argc, Char const* argv[]);
Int32 main(Int32 argc, Char const* argv[]) {
return DebuggerNeKernel(argc, argv);
}
-
diff --git a/src/CommandLine/ld64.cc b/src/CommandLine/ld64.cc
index 9d8722e..6d8a247 100644
--- a/src/CommandLine/ld64.cc
+++ b/src/CommandLine/ld64.cc
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#include <CompilerKit/Detail/Config.h>
@@ -14,4 +13,3 @@ CK_IMPORT_C Int32 DynamicLinker64PEF(Int32 argc, Char const* argv[]);
Int32 main(Int32 argc, Char const* argv[]) {
return DynamicLinker64PEF(argc, argv);
}
-
diff --git a/src/CommandLine/pef-amd64-cxxdrv.cc b/src/CommandLine/pef-amd64-cxxdrv.cc
index 042370f..6617d2c 100644
--- a/src/CommandLine/pef-amd64-cxxdrv.cc
+++ b/src/CommandLine/pef-amd64-cxxdrv.cc
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
/// @file pef-amd64-cxxdrv.cc
/// @brief Nectar C++ frontend compiler for AMD64.
@@ -36,4 +35,3 @@ Int32 main(Int32 argc, Char const* argv[]) {
return (entrypoint_cxx(argc, argv) == NECTAR_SUCCESS) ? EXIT_SUCCESS : EXIT_FAILURE;
}
-