Find the answer to your Linux question:
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 ...
  1. #1
    Just 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:

    Code:
    [Ritu@localhost src]$ make
    make: `r8s' is up to date.
    Does this mean I successfully compiled the program? If so, how do I then install it?

    This is what I have tried, as root:
    Code:
    [root@localhost ~]# make install
    make: *** No rule to make target `install'.  Stop.

  2. #2
    Linux User vickey_20's Avatar
    Join Date
    Mar 2009
    Location
    Mumbai, India
    Posts
    493
    the standard procedure for install software in linux is
    Code:
    ./configure 
    make
    make install
    But might differ , 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

  3. #3
    Linux Guru Rubberman's Avatar
    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!

  4. #4
    Linux User vickey_20's Avatar
    Join Date
    Mar 2009
    Location
    Mumbai, India
    Posts
    493
    Quote Originally Posted by Rubberman View Post
    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.
    But how will you directly get an executable??
    Only if I could understand the man pages
    Registered Linux user #492640
    OS: RHEL4,5 ,RH 9,Ubuntu

  5. #5
    Linux Guru Rubberman's Avatar
    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:
    Code:
    sudo cp src/r8s /usr/local/bin
    sudo chmod +x /usr/local/bin/r8s
    This is assuming that r8s is an executable file, of course.
    Sometimes, real fast is almost as good as real time.
    Just remember, Semper Gumbi - always be flexible!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...