From c406f4598381a0cfcf000611c2534b83d6851950 Mon Sep 17 00:00:00 2001 From: Austin Appleby Date: Sun, 3 Mar 2024 02:58:01 -0800 Subject: [PATCH] update README.md --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d61ef87..dcb4ebe 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,12 @@ # ![Logo](hancho_small.png) Hancho - - "班長, hanchō - "Squad leader”, from 19th c. Mandarin 班長 (bānzhǎng, “team leader”)" Hancho is a simple, pleasant build system with few moving parts. Hancho fits comfortably in 500 lines of Python and requires no installation, just copy-paste it into your source tree. -Hancho is inspired by Ninja and Bazel. +Hancho is inspired by Ninja (for speed and simplicity) and Bazel (for syntax and extensibility). Like Ninja, it knows nothing about your build tools and is only trying to assemble and run commands as fast as possible. @@ -24,12 +22,16 @@ Hancho should suffice for small to medium sized projects. [Some Additional Documentation Here](docs) +## Updates + + - 2024-03-02 - Initial release. Some test cases yet to be written. + ## Installation ``` bash wget https://raw.githubusercontent.com/aappleby/hancho/main/hancho.py chmod +x hancho.py -./hancho.py +./hancho.py --help ``` ## Simple Example