mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-06-02 19:07:07 +00:00

Co-developed-by: Fabian Grünbichler <f.gruenbichler@proxmox.com> Signed-off-by: Dominic Jäger <d.jaeger@proxmox.com> [split into its own patch + minor improvements/style fixes] Signed-off-by: Fabian Ebner <f.ebner@proxmox.com> [renamed API handler, since it's not an index] Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
7 lines
216 B
Makefile
7 lines
216 B
Makefile
SOURCES=Agent.pm CPU.pm Machine.pm OVF.pm
|
|
|
|
.PHONY: install
|
|
install:
|
|
install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE/API2/Qemu
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/API2/Qemu/$$i; done
|