Initial commit

This commit is contained in:
Casey 2023-09-19 11:00:57 +03:00
commit 294a4a0b81
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
4 changed files with 19 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
cbt

4
README Normal file
View File

@ -0,0 +1,4 @@
cbt - C Build Tool
------------------
nob/nobuild-style building framework for C

5
cbt.c Normal file
View File

@ -0,0 +1,5 @@
#include "cbt.h"
int main(int argc, char **argv) {
}

9
cbt.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef _CBT_H_
#define _CBT_H_
#endif
// Implementation
#ifdef CBT_IMPLEMENTATION
#error "todo!"
#endif