summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-07 12:10:48 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-07 12:10:48 +0100
commitac62a264fe08839b46160e8ce218a32012883cd7 (patch)
treecf1051d8d6bf5a80a86e5535fb408afc2489f4f9
parent28ed78b480ec1c823092e75e4a433611c1efe12a (diff)
ADD: WIP: Filesystem format tool. (under EPM)
-rw-r--r--public/tools/make_fs/dist/.keep0
-rw-r--r--public/tools/make_fs/make_fs.cc16
-rw-r--r--public/tools/make_fs/make_fs.json12
3 files changed, 28 insertions, 0 deletions
diff --git a/public/tools/make_fs/dist/.keep b/public/tools/make_fs/dist/.keep
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/public/tools/make_fs/dist/.keep
diff --git a/public/tools/make_fs/make_fs.cc b/public/tools/make_fs/make_fs.cc
new file mode 100644
index 00000000..e114113b
--- /dev/null
+++ b/public/tools/make_fs/make_fs.cc
@@ -0,0 +1,16 @@
+/* -------------------------------------------
+
+ Copyright (C) 2025, Amlal EL Mahrouss, all rights reserved.
+
+ FILE: NeFS.h
+ PURPOSE: NeFS (New extended File System) support.
+
+ ------------------------------------------- */
+
+#include <FSKit/NeFS.h>
+
+int main(int argc, char** argv)
+{
+
+ return 0;
+} \ No newline at end of file
diff --git a/public/tools/make_fs/make_fs.json b/public/tools/make_fs/make_fs.json
new file mode 100644
index 00000000..8134bab3
--- /dev/null
+++ b/public/tools/make_fs/make_fs.json
@@ -0,0 +1,12 @@
+{
+ "compiler_path": "g++",
+ "compiler_std": "c++20",
+ "headers_path": ["./"],
+ "sources_path": ["make_fs.cc"],
+ "output_name": "./dist/make_fs",
+ "cpp_macros": [
+ "kMKFSVersion=0x0100",
+ "kMKFSVersionHighest=0x0100",
+ "kMKFSVersionLowest=0x0100"
+ ]
+}