'make install' fails when trying to build xen-tools from the git repo
Hi, I'm trying to run xen-tools on my Fedora, so I'm following the documentation on Using xen-tools on Fedora (http://blog.xen.org/index.php/2013/01/24/using-xen-tools-on-fedora/) After I installed the git and try to run command: git clone git://gitorious.org/xen-tools/xen-tools.git xen-tools.git when I try command make install, it says: make: ** No rule to make target `install'. Stop.*
# git clone git://gitorious.org/xen-tools/xen-tools.git xen-tools.git
Cloning into 'xen-tools.git'...
remote: Counting objects: 9369, done.
make install
remote: Compressing objects: 100% (8704/8704), done.
remote: Total 9369 (delta 4019), reused 5144 (delta 554)
Receiving objects: 100% (9369/9369), 6.64 MiB | 3.22 MiB/s, done.
Resolving deltas: 100% (4019/4019), done.
[root@seafourium asem]# make install
make: *** No rule to make target `install'. Stop.
The instructions imply that you have changed directory into the repo you've just cloned (see my answer below). Please do a:
cd xen-tools
from your current directory, then do the make install. Chances are, you'll have to do a sudo make install as well, if you're not doing everything as root (which is commendable). IF that doesn't work, run the command: pwd
and
ls -al
and post the output here...