commit 294a4a0b8154e46254ed1977b48a3ce1fec66a5b Author: hkc Date: Tue Sep 19 11:00:57 2023 +0300 Initial commit 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