make *** no targets specified and no makefile found. stop

后端 未结 11 2052
栀梦
栀梦 2020-12-03 02:58

I have a problem installing package dionaea.

After I type this:

./configure --with-lcfg-include=/opt/dionaea/include/ \\
--with-lcfg-lib         


        
相关标签:
11条回答
  • 2020-12-03 03:22

    I got the same error and i fixed it by looking at the solution from this site:

    http://trac.macports.org/ticket/40476.

    SO did you got any error after running './configure' ? Maybe something about lacking tclConfig.sh. If so, instead of running './configure', you have to search for the tclConfigure.sh first and then put it in the command, in my case, its located in /usr/lib/. And then run: './configure ----with-tcl=/usr/lib --with-tclinclude=/usr/include'

    0 讨论(0)
  • 2020-12-03 03:25

    Delete your source tree that was gunzipped or gzipped and extracted to folder and reextract again. Supply your options again

    ./configure --with-option=/path/etc ...
    

    Then if all libs are present, your make should succeed.

    0 讨论(0)
  • 2020-12-03 03:26

    running make clean and then ./configure should solve your problem.

    0 讨论(0)
  • 2020-12-03 03:31

    Unpack the source from a working directory and cd into the file directory as root. Use the commands ./configure then make and make install

    0 讨论(0)
  • 2020-12-03 03:33

    If after ./configure Makefile.in and Makefile.am are generated and make fail (by showing this following make: *** No targets specified and no makefile found. Stop.) so there is something not configured well, to solve it, first run "autoconf" commande to solve wrong configuration then re-run "./configure" commande and finally "make"

    0 讨论(0)
提交回复
热议问题