Results 1 to 7 of 7
Hi,
I'm having the same problem. Whatever I tried to compile before, it failed. The ./configure didn't work. It says, "No such file or directory". Now, I'm trying to install ...
- 03-09-2008 #1
"make" command not working
Hi,
I'm having the same problem. Whatever I tried to compile before, it failed. The ./configure didn't work. It says, "No such file or directory". Now, I'm trying to install realplayer. So, I cd to the realplayer dir, issued make. And here is the output:
I'm running FC8,Code:make[1]: Entering directory `/home/Imran/bin/src/realplay-10.0.9/common/runtime' make[1]: Makefile: No such file or directory make[1]: *** No rule to make target `Makefile'. Stop. make[1]: Leaving directory `/home/Imran/bin/src/realplay-10.0.9/common/runtime' make: *** [all] Error 2
Thanks in advance.Code:kernel-devel-2.6.23.1-42.fc8 kernel-2.6.23.1-42.fc8 kernel-2.6.23.15-137.fc8 kernel-devel-2.6.23.15-137.fc8 kernel-headers-2.6.23.15-137.fc8
- 03-09-2008 #2
You could install RealPlayer using the rpm which is available from here.
- 03-09-2008 #3
If your machine has internet access then I would suggest you to install VLC Player through Package Manager of your distro. VLC supports most of the media formats.
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-09-2008 #4
Hi,
Thanks for your suggestion. I have vlc installed already. Though, I'm more willing to know the reason of failure of compiling the binaries. Can you tell me why ./configure or make is not working?
- 03-09-2008 #5Linux Engineer
- Join Date
- Apr 2006
- Location
- Saint Paul, MN, USA / CentOS, Debian, Solaris, SuSE
- Posts
- 1,117
Hi.
The error message:
suggests to me that you probably typed:
and you probably should have typed (only):Code:make Makefile
Here's an example:Code:make
Producing:Code:#!/bin/bash - # @(#) s1 Demonstrate make. echo echo "(Versions displayed with local utility \"version\")" version >/dev/null 2>&1 && version =o $(_eat $0 $1) my-nl make rm -f my_file echo echo " Input makefile:" my-nl makefile echo echo " Results from executing \"make\":" make echo echo " Results from executing \"make Makefile\":" make Makefile exit 0
Other than that, I have no idea. Best wishes ... cheers, drlCode:% ./s1 (Versions displayed with local utility "version") Linux 2.6.11-x1 GNU bash 2.05b.0 my-nl (local) 296 GNU Make 3.80 Input makefile: ==> makefile <== 1 # Sun Mar 9 17:08:17 CDT 2008 2 # 3 # Demonstrate make. 4 5 my_file: 6 touch my_file 7 @ echo " File created." 8 @ ls Results from executing "make": touch my_file File created. makefile my_file readme.txt s1 Results from executing "make Makefile": make: *** No rule to make target `Makefile'. Stop.
Welcome - get the most out of the forum by reading forum basics and guidelines: click here.
90% of questions can be answered by using man pages, Quick Search, Advanced Search, Google search, Wikipedia.
We look forward to helping you with the challenge of the other 10%.
( Mn, 2.6.n, AMD-64 3000+, ASUS A8V Deluxe, 1 GB, SATA + IDE, Matrox G400 AGP )
- 03-10-2008 #6
I would suggest to check README or INSTALL file for instructions. It must be along with other extracted files.
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-10-2008 #7
Hi drl,
I typed "make" not "make Makefile".


Reply With Quote
