mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-08-06 15:47:12 +00:00

moving qemu_{device,object}{add,del} helpers there for now. In preparation to remove the cyclic include of PVE::QemuServer in the memory module and generally for better modularity in the future. No functional change intended. Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
19 lines
327 B
Makefile
19 lines
327 B
Makefile
SOURCES=PCI.pm \
|
|
USB.pm \
|
|
Memory.pm \
|
|
ImportDisk.pm \
|
|
OVF.pm \
|
|
Cloudinit.pm \
|
|
Agent.pm \
|
|
Helpers.pm \
|
|
Monitor.pm \
|
|
Machine.pm \
|
|
CPUConfig.pm \
|
|
CGroup.pm \
|
|
Drive.pm \
|
|
QMPHelpers.pm
|
|
|
|
.PHONY: install
|
|
install: ${SOURCES}
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/QemuServer/$$i; done
|