Enable build support by adding .onedev-buildspec.yml
| dmk | Loading last commit info... | |
| scripts | ||
| .clang-format | ||
| .editorconfig | ||
| .gitignore | ||
| LICENSE.md | ||
| README.md | ||
| build.sh | ||
| compile_flags.txt |
README.md
dmk
Declarative build system
Requirements
- c++20 compiler - for example, zig
- shell, git
Development
git clone https://dev.lutov.net/vslutov/dmake
cd dmake
./build.sh
See ./build.sh --help for futher info
License
dmk - declarative build system
Copyright (C) 2026 Vladimir Liutov [email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Coding rules
- Everything is header
- All variables declared as static inline
- Source located in folders like
10.baseand20.test. Source can include only sources with current order or less: file from20.testcan include10.base, but not vice versa.