diff options
author | Zach van Rijn <me@zv.io> | 2023-02-04 01:03:24 -0600 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2024-08-10 06:27:01 +0000 |
commit | 8609f79a1f92eb9b553d0928d6c39ec5fbad3c34 (patch) | |
tree | 71c8927aebecad3bc9d90d48cda92eefbb0a2a58 /.gitignore | |
parent | 6f94d419b70e2881ce6d9c37233b5a13dca61d08 (diff) | |
download | packages-zv/genmake.tar.gz packages-zv/genmake.tar.bz2 packages-zv/genmake.tar.xz packages-zv/genmake.zip |
scripts/*: add Makefile generator.zv/genmake
This commit adds a few scripts to the packages repository:
* configure
Typical 'configure' script; run to see usage.
* scripts/genmake
Generates a top-level 'Makefile' that will either
build packages in the correct order, or sleep to
simulate package builds. The main purpose of this
tool is to enable concurrent package builds, and
to provide a framework to analyze build strategies.
When a dependency is updated, it is the responsibility of
the maintainer to relbump all dependent packages. This tool
is intended to facilitate concurrent package builds, not be
a comprehensive maintenance tool.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 5c5ff1687..4d70126d3 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ pkg scripts/sgrep scripts/tsort scripts/.index +Makefile +built |