feat(gnu-make): dynamic

Signed-off-by: Anhad Singh <andypython@protonmail.com>
This commit is contained in:
Anhad Singh 2024-12-26 16:11:03 +11:00
parent 0f6a6e259c
commit 69e5aef6f3

View File

@ -1,9 +1,19 @@
#TODO very basic makefiles are tested to work but needs more testing
[source]
tar = "http://ftp.gnu.org/gnu/make/make-4.4.tar.gz"
patches = [
"redox.patch"
]
[build]
template = "configure"
#TODO very basic makefiles are tested to work but needs more testing
[source]
tar = "http://ftp.gnu.org/gnu/make/make-4.4.tar.gz"
patches = [
"redox.patch"
]
script = """
DYNAMIC_INIT
autotools_recursive_regenerate
"""
[build]
template = "custom"
script = """
DYNAMIC_INIT
cp -rp "$COOKBOOK_SOURCE/." ./
cookbook_configure
"""