mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-08-04 10:04:06 +00:00
12 lines
229 B
Makefile
12 lines
229 B
Makefile
SOURCES=PCI.pm \
|
|
USB.pm \
|
|
Memory.pm \
|
|
ImportDisk.pm \
|
|
OVF.pm \
|
|
Cloudinit.pm \
|
|
Agent.pm \
|
|
|
|
.PHONY: install
|
|
install: ${SOURCES}
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/QemuServer/$$i; done
|