Skip to content
Snippets Groups Projects
Commit 5e5e60dd authored by Ben Gamari's avatar Ben Gamari
Browse files

boot: Create GNUmakefiles for libraries

D3918 neglected to implement this when it rewrote boot in python.
parent 3d43fd5b
No related branches found
No related tags found
No related merge requests found
......@@ -132,6 +132,17 @@ def boot_pkgs():
pkg = pkg,
dir = dir_)))
makefile = os.path.join(package, 'GNUmakefile')
with open(makefile, 'w') as f:
f.write(dedent(
"""\
dir = {package}
TOP = {top}
include $(TOP)/mk/sub-makefile.mk
FAST_MAKE_OPTS += stage=0
""".format(package = package, top = top)
))
def autoreconf():
# Run autoreconf on everything that needs it.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment