When I type make config
in the terminal, the system responds with:
make: *** No rule to make target `config'. Stop.
Any idea how to fix that problem?
When I type make config
in the terminal, the system responds with:
make: *** No rule to make target `config'. Stop.
Any idea how to fix that problem?
You can't run make config
just anywhere - You have to be in a directory which contains a Make file. To verify:
ls Makefile
This file has to contain a target called config
:
grep ^config Makefile
(this last command will not match all possible Makefile syntax, but if it's a simple file it should at least show you if there is another target like configure
or configuration
.)
It means that make
doesn't know what to do with the config
argument. It does not exist. Read the Makefile
to determine what you need.
Software configuration on *nix is usually made by running the configure
script in the project top-level directory:
cd /path/to/project
./configure
Have you tried that?
config
. Why were you expecting it to work? – Gilles 'SO- stop being evil' Nov 29 '13 at 23:04