From 294a4a0b8154e46254ed1977b48a3ce1fec66a5b Mon Sep 17 00:00:00 2001 From: hkc Date: Tue, 19 Sep 2023 11:00:57 +0300 Subject: [PATCH] Initial commit --- .gitignore | 1 + README | 4 ++++ cbt.c | 5 +++++ cbt.h | 9 +++++++++ 4 files changed, 19 insertions(+) create mode 100644 .gitignore create mode 100644 README create mode 100644 cbt.c create mode 100644 cbt.h diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a52df5f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +cbt diff --git a/README b/README new file mode 100644 index 0000000..7036de6 --- /dev/null +++ b/README @@ -0,0 +1,4 @@ +cbt - C Build Tool +------------------ + +nob/nobuild-style building framework for C diff --git a/cbt.c b/cbt.c new file mode 100644 index 0000000..8c811be --- /dev/null +++ b/cbt.c @@ -0,0 +1,5 @@ +#include "cbt.h" + +int main(int argc, char **argv) { + +} diff --git a/cbt.h b/cbt.h new file mode 100644 index 0000000..c8d1bc3 --- /dev/null +++ b/cbt.h @@ -0,0 +1,9 @@ +#ifndef _CBT_H_ +#define _CBT_H_ + +#endif + +// Implementation +#ifdef CBT_IMPLEMENTATION +#error "todo!" +#endif