On Sunday, October 12, 2014 7:05 AM, Ray Eckert <eddi...@ymail.com> wrote:
>ray@asrock:~$ cd /usr/local/src/makemkv-bin-1.8.13 
>ray@asrock:/usr/local/src/makemkv-bin-1.8.13$ ls 
>bin  Makefile  src 


Note here that the only makefile you have in this directory
is named "Makefile"


>ray@asrock:/usr/local/src/makemkv-bin-1.8.13$ sudo make -f 
>Makefile.linux[sudo] password for ray:  >make: Makefile.linux: No such file or 
>directory 

>make: *** No rule to make target `Makefile.linux'.  Stop. 


Here you're asking make to run on a makefile named
"Makefile.linux" which you don't have.  Apparently the only makefile
you have in this directory is named "Makefile"

>ray@asrock:/usr/local/src/makemkv-bin-1.8.13$ sudo make -f makefile.linux 
>make: makefile.linux: No such file or directory 
>make: *** No rule to make target `makefile.linux'.  Stop. 


Here you're asking make to run on a makefile named
"makefile.linux" which you don't have.  Apparently the only makefile
you have in this directory is named "Makefile"


You should try just running "make" with no "-f makefile.linux"

_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to