A website documenting creating the build root for MidgardOS
| Navigation | ||
|---|---|---|
| « GNU Gzip | HOME | GNU Patch » |
Name: GNU Make
Summary: A powerful orchestration tool for building software and running tasks
License: GPL v3 or later
Version: 4.4.1
URL: https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz
To configure GNU Make for install into the build root, run the following command:
./configure --prefix=/usr \
--libdir=/usr/lib64 \
--libexecdir=/usr/lib64 \
--host=$BRFS_TARGET \
--build=$BRFS_HOST
To compile GNU Make, run the following command:
make
Finally, to install GNU Make into the build tree, run the following command:
make DESTDIR=$BRFS install
More details about this package is covered later in the core system build.
| Navigation | ||
|---|---|---|
| « GNU Gzip | HOME | GNU Patch » |