first commit

This commit is contained in:
2022-09-09 18:40:34 +06:00
commit 990af1d10c
14 changed files with 282 additions and 0 deletions

15
README.md Normal file
View File

@@ -0,0 +1,15 @@
# cbuild
My C/C++ build system written in bash.
Repo contains some scripts (functions, init, etc.), which can be used in your custom task scripts. There are also some default tasks.
All tasks should be launched through `Makefile`. Tasks can be configured in `.config` file (it is automatically created by init.sh).
## How to set up
```bash
cd some_project
git clone http://github.com/Timerix22/cbuild.git
cp cbuild/default.Makefile Makefile
make
```