Metadata-Version: 2.1
Name: yymake
Version: 0.4.9
Summary: A corss build dsl make tool
Home-page: https://github.com/evilbinary/ymake
Author: evilbinary
Author-email: rootntsd@gmail.com
Project-URL: Bug Tracker, https://github.com/evilbinary/ymake/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pytest
Requires-Dist: colorama
Requires-Dist: networkx
Requires-Dist: colorlog
Requires-Dist: diskcache

# ymake
ymake is a make dsl build tools


## 安装

```bash
pip install yymake
```

## 使用

新建ya.py

```python
project("yiyiya",
    version='12.0',
    desc='yiyiya is an os',
)

target('hello')
add_kind("binary")
add_files("./main.c")

```

编译运行

```bash
ya
```
