While running make install you could possibly run into -bash: make: command not found error if make itself is not installed.
You can resolve this error, by installing make and its dependencies :
CentOS 6/7 & RHEL 6/7
yum install gcc automake autoconf libtool make
CentOS 8/RHEL 8
These would reveal all the "development tools" packages and dependencies.
dnf groupinfo "Development Tools"
To Install the development tools including make you can run:
dnf group install "Development Tools"