From ac62a264fe08839b46160e8ce218a32012883cd7 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 7 Mar 2025 12:10:48 +0100 Subject: ADD: WIP: Filesystem format tool. (under EPM) --- public/tools/make_fs/dist/.keep | 0 public/tools/make_fs/make_fs.cc | 16 ++++++++++++++++ public/tools/make_fs/make_fs.json | 12 ++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 public/tools/make_fs/dist/.keep create mode 100644 public/tools/make_fs/make_fs.cc create mode 100644 public/tools/make_fs/make_fs.json diff --git a/public/tools/make_fs/dist/.keep b/public/tools/make_fs/dist/.keep new file mode 100644 index 00000000..e69de29b 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 + +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" + ] +} -- cgit v1.2.3