Installation of doxygen and error in make command

后端 未结 5 477
面向向阳花
面向向阳花 2020-12-10 05:40

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          


        
5条回答
  •  -上瘾入骨i
    2020-12-10 06:22

    The doxygen make is strange: "make install" will not invoke "make", so you need to do a

    make
    make install
    

    to first generate the binaries and then install them.

提交回复
热议问题