Overview for make

How to install make app for building applications from source in Devuan Linux?

CMake is a tool to help you to manage the build process of software using a compilter. cmake is a platform independet and at the same time - an open-source . Installation of cmake app in Devuan Linux is very easy and fast:

$ sudo apt-get install make

output:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Suggested packages:
  make-doc
The following NEW packages will be installed:
  make
0 upgraded, 1 newly installed, 0 to remove and 26 not upgraded.
Need to get 302 kB of archives.
After this operation, 1,240 kB of additional disk space will be used.
Get:1 http://deb.devuan.org//merged ascii/main amd64 make amd64 4.1-9.1 [302 kB]
Fetched 302 kB in 5s (53.7 kB/s)     
Selecting previously unselected package make.
(Reading database ... 107754 files and directories currently installed.)
Preparing to unpack .../make_4.1-9.1_amd64.deb ...
Unpacking make (4.1-9.1) ...
Setting up make (4.1-9.1) ...
Processing triggers for man-db (2.7.6.1-2) ...

Read more

Written by Administrator on Friday May 8, 2020

How to get version of make program in Solus OS ?

If you want to know the version of make program in your Solus OS Linux or just to check, if make is installed, you can easily do it with running follow command in terminal :

$ make --version

In my case I got this output:

GNU Make 4.3
Built for x86_64-solus-linux-gnu
Copyright (C) 1988-2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Read more

Written by Administrator on Monday April 6, 2020