Make is a tool which controls the generation of executables and other non-source files of a program from the program's source files. See documentation
- The Core Planners: [email protected]
Binary package
Binary packages can be set as runtime or build time dependencies. See Defining your dependencies for more information.
To add core/make as a dependency, you can add one of the following to your plan file.
pkg_build_deps=(core/make)
pkg_deps=(core/make)
To install this plan, you should run the following commands to first install, and then link the binaries this plan creates.
hab pkg install core/make --binlink
will add the following binary to the PATH:
- /bin/make
$ hab pkg install core/make --binlink
» Installing core/make
☁ Determining latest version of core/make in the 'stable' channel
☛ Verifying core/make/4.2.1/20200306002515
→ Using core/glibc/2.29/20200305172459
→ Using core/linux-headers/4.19.62/20200305172241
✓ Installed core/make/4.2.1/20200306002515
★ Install of core/make/4.2.1/20200306002515 complete with 1 new packages installed.
» Binlinking make from core/make/4.2.1/20200306002515 into /bin
★ Binlinked make from core/make/4.2.1/20200306002515 to /bin/make
You can now use the binary as normal. For example:
/bin/make --help
or make --help
$ make --help
Usage: make [options] [target] ...
Options:
-b, -m Ignored for compatibility.
-B, --always-make Unconditionally make all targets.
-C DIRECTORY, --directory=DIRECTORY
Change to DIRECTORY before doing anything.
-d Print lots of debugging information.
--debug[=FLAGS] Print various types of debugging information.
...
...