How To Install bmake on Fedora 36
Introduction
In this tutorial we learn how to install bmake
on Fedora 36.
What is bmake
bmake, the NetBSD make tool, is a program designed to simplify the maintenance of other programs. The input of bmake is a list of specifications indicating the files upon which the targets (programs and other files) depend. bmake then detects which targets are out of date based on their dependencies and triggers the necessary commands to bring them up to date when that happens. bmake is similar to GNU make, even though the syntax for the advanced features supported in Makefiles is very different.
We can use yum
or dnf
to install bmake
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install bmake.
Install bmake on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install bmake
using dnf
by running the following command:
sudo dnf -y install bmake
Install bmake on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install bmake
using yum
by running the following command:
sudo yum -y install bmake
How To Uninstall bmake on Fedora 36
To uninstall only the bmake
package we can use the following command:
sudo dnf remove bmake
bmake Package Contents on Fedora 36
/usr/bin/bmake
/usr/lib/.build-id
/usr/lib/.build-id/ae
/usr/lib/.build-id/ae/1579874c1ae5489305855b113edcdb49da1499
/usr/share/doc/bmake
/usr/share/doc/bmake/ChangeLog
/usr/share/doc/bmake/README
/usr/share/licenses/bmake
/usr/share/licenses/bmake/LICENSE
/usr/share/man/man1/bmake.1.gz
References
Summary
In this tutorial we learn how to install bmake
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).