Results 1 to 5 of 5
I am trying to install the program "r8s" on my RHEL5. I ran the makefile and it gave me the following output:
Code:
[Ritu@localhost src]$ make
make: `r8s' is up ...
- 06-25-2009 #1Just Joined!
- Join Date
- Jun 2009
- Posts
- 4
I ran the makefile. Now what do I do?
I am trying to install the program "r8s" on my RHEL5. I ran the makefile and it gave me the following output:
Does this mean I successfully compiled the program? If so, how do I then install it?Code:[Ritu@localhost src]$ make make: `r8s' is up to date.
This is what I have tried, as root:
Code:[root@localhost ~]# make install make: *** No rule to make target `install'. Stop.
- 06-25-2009 #2
the standard procedure for install software in linux is
But might differCode:./configure make make install
, try the above codes in a sequence and if you still dont get it then read the installation notes to screw your self.
Only if I could understand the man pages
Registered Linux user #492640
OS: RHEL4,5 ,RH 9,Ubuntu
- 06-26-2009 #3Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,970
If there is no install target in the make file, then you will need to copy the executable somewhere such as /usr/bin or /usr/local/bin so others can access it.
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 06-26-2009 #4
- 06-26-2009 #5Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,970
The executable in this case is the 'r8s' file that make says is already built. He needs to find it in the build directories and copy it to /usr/bin or /usr/local/bin (preferred in such cases) as root, or sudoed. Example:
This is assuming that r8s is an executable file, of course.Code:sudo cp src/r8s /usr/local/bin sudo chmod +x /usr/local/bin/r8s
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!


Reply With Quote
