0

I was installing tar.bz2 application (OpenFM) on my Ubuntu 14.10 and I followed steps listed on this website: http://www.makeuseof.com/tag/compile-install-tar-gz-tar-bz2-files-ubuntu-linux/ .

When I had to run the "./configure" command I saw this:

bash: ./configure: No such file or directory

On this website there were a note if my system does not have the ./configure command I can skip to the next chapter of the guide what contained executing "make" command.

When I executed "make" command without executing "./configure" command I saw this:

make: *** * ***No targets specified and no makefile found.  Stop.  

Please answer to me how to fix this error or how to install .tar.bz2 application without "./configure" command.

Sorry for my terrible English and thanks for help!

Lety
  • 6,089
  • 2
  • 32
  • 38

1 Answers1

0

configure is a script (file) located in the source tree of a source distribution.
Check if it exists in the source tree of OpenFM and that is it executable.

Jan
  • 12,931
  • 3
  • 34
  • 39