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

makefile

Solution

`make` takes a makefile as input. Makefile usually is named `makefile` or `Makefile`. The `configure` command should generate a makefile, so that `make` could be in turn executed. Check if a makefile has been generated under your working directory.

Problem

I have a problem installing package `dionaea`. After I type this: ``` ./configure --with-lcfg-include=/opt/dionaea/include/ \ --with-lcfg-lib=/opt/dionaea/lib/ \ --with-python=/opt/dionaea/bin/python3.1 \ --with-cython-dir=/usr/bin \ --with-udns-include=/opt/dionaea/include/ \ --with-udns-lib=/opt/dionaea/lib/ \ --with-emu-include=/opt/dionaea/include/ \ --with-emu-lib=/opt/dionaea/lib/ \ --with-gc-include=/usr/include/gc \ --with-ev-include=/opt/dionaea/include \ --with-ev-lib=/opt/dionaea/lib \ --with-nl-include=/opt/dionaea/include \ --with-nl-lib=/opt/dionaea/lib/ \ --with-curl-config=/opt/dionaea/bin/ \ --with-pcap-include=/opt/dionaea/include \ --with-pcap-lib=/opt/dionaea/lib/ \ --with-glib=/opt/dionaea ``` and the next step is: ``` #make ``` An error message appears: `make: *** No targets specified and no makefile found. Stop.` My directory is `/usr/local/src`

Original source