KVM-VMI / kvm

Fork of KVM with Virtual Machine Introspection patches
Other
33 stars 27 forks source link

Add install rule in libkvmi Makefile #24

Closed mtarral closed 4 years ago

mtarral commented 4 years ago

It would be convient to add an install rule in libkvmi's Makefile, to install the library and headers system-wide.

In my Travis scripts, I have to do the following: https://github.com/Wenzel/libmicrovmi/blob/master/.travis.yml#L31

- sudo apt-get install git
- git clone https://github.com/KVM-VMI/kvm --branch kvmi --depth 1
- cd kvm/tools/kvm/kvmi && make && sudo cp -rv include/ /usr/local && sudo cp libkvmi.so /usr/local/lib

cc @adlazar

Thanks !

Wenzel commented 4 years ago

ping @adlazar, do you think you can add a patch in the next kvmi release to deal with this small issue ? :)

adlazar commented 4 years ago

Does the above commit help?

mtarral commented 4 years ago

@adlazar thanks for the commit. I will test this and get back to you.

Wenzel commented 4 years ago

It works, thanks o/