A new make script for builds.
Project description
Neomake
基于Python的底层构建系统。
示例
项目目录:
.
├── lib.c
├── main.c
└── nmake.py
nmake.py
#!/usr/bin/python -B
from neomake import *
def make_main(target, deplist):
C(deplist, target)
main = Target('main', ['lib.c', 'main.c'], make_main)
start_neomake()
if 'build' in sys.argv:
main.make()
elif 'clear' in sys.argv:
main.clear()
end_neomake()
构建项目:
$ ./nmake.py build
gcc lib.c main.c --> main
清理生成的额外文件:
$ ./nmake.py clear
removing main
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
neomake-0.0.6.tar.gz
(5.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file neomake-0.0.6.tar.gz.
File metadata
- Download URL: neomake-0.0.6.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
043881aff96ec05a571bd785a8a41d2536426455dfc0a6fbf844c399856f267e
|
|
| MD5 |
7b2425003c565cf851d22c130799fa2f
|
|
| BLAKE2b-256 |
11a14a090c596787f997f8caaff5cd84ce693530d305e74f1b694f0a403c7dc2
|
File details
Details for the file neomake-0.0.6-py3-none-any.whl.
File metadata
- Download URL: neomake-0.0.6-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adfea873bf9a5311dc123d6702d0c89a666384ba396af4934be46ca546f8334f
|
|
| MD5 |
f5f057b7db43c62703e244cf2b5f7d2f
|
|
| BLAKE2b-256 |
b5c6ba1ff6edca378bae74c20c1aef9fa6095fa25c259b36781ed2a6153bedc1
|