Add top-level Makefile

Building the OS is now as simple as running `make` on a Gentoo system.

Interestingly, when `make` is executed as a (grand)child process of
another `make` process, it always prints an `Entering directory ...`
message.  This breaks the `make kernelversion` command, by adding
extraneous text to the output.
This commit is contained in:
2023-02-13 22:50:59 -06:00
parent f32c6d37a4
commit 1687e615b4
4 changed files with 100 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ cid=$(podman run \
./patch-uboot.sh
podman exec -it ${cid} ./build-all.sh "${target}"
podman exec -it ${cid} make
podman stop ${cid}
podman rm ${cid}