umake/make.py
Corentin b31e3b8426
Change layout and use watchinotify
* Change code layout to a flat layout
* Remove pyright configuration
* Add watchinotify as optional dependency to use the watch option
* Fix watch option to watch for all dependencies (headers)
2026-07-24 01:04:21 +09:00

12 lines
136 B
Python

#! python3
from umake import make, Config
def main():
config = Config()
make(config)
if __name__ == '__main__':
main()