I need to manually install apache httpd 2.4.12 on ubuntu 13.10. For some reasons I cannot use apt-get install.
Having gone through the instructions provided for httpd installation, I execute the following commands in order
When I execute the make command, I get this error
**make: *** No targets specified and no makefile found. Stop.**
Anyone has any idea where I am going wrong.
You either are
in the wrong folder (no Makefile
)
failed to properly ./configure
(any errors?)
configure
is responsible for generating the Makefile
s. If you don't succeed at configuring (maybe you are missing some library needed for compilation?) then you won't get Makefile
s and cannot call make
.
Never ignore errors. They are errors, after all. They'll come back to bite you.