Metadata-Version: 2.4
Name: yymake
Version: 0.9.8
Summary: A cross 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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 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

```
