https://github.com/alepacho/dbuil
Like Make, but DBuil
https://github.com/alepacho/dbuil
build dbuil make makefile
Last synced: 9 months ago
JSON representation
Like Make, but DBuil
- Host: GitHub
- URL: https://github.com/alepacho/dbuil
- Owner: Alepacho
- License: other
- Created: 2022-12-09T14:12:27.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T17:44:19.000Z (over 3 years ago)
- Last Synced: 2025-03-01T04:41:43.037Z (over 1 year ago)
- Topics: build, dbuil, make, makefile
- Language: C++
- Homepage:
- Size: 145 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DBUIL
DBUIL is a small build automation program. It's like Make, but uses json instead of Makefile.
# Example
This is an example of how `dbuil.json` file look like:
```json
{
"variables" : {
"message": "Hello World!"
},
"targets": [
{
"name": "test",
"description": "Sample Text",
"commands": [ "echo ${message}" ]
}
]
}
```
See other examples in `dbuil.json` and `test` folder.
# How to use
Just type `./dbuil -help` to see all available commands.