mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-05-09 09:48:52 +00:00

the api part was never in use by anything Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
7 lines
209 B
Makefile
7 lines
209 B
Makefile
SOURCES=Agent.pm CPU.pm Machine.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
|