I am trying to install doxygen in my CentOs 6.3 machine and I am getting this error. Any ideas??
[root@dell1 doxygen-1.8.3.1]# make install
/usr/bin/install
At first, you'll need to install some dependencies
sudo apt install cmake
sudo apt install flex
sudo apt install bison
After that, you execute the commands below, it'll probably works fine.
git clone https://github.com/doxygen/doxygen.git
cd doxygen
mkdir build
cd builda
cmake -G "Unix Makefiles" ..
make
sudo make install