mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-18 21:04:12 +00:00

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com> (cherry picked from commit a5d0627800ac98cf60ade5469ba19327d5cfbdae) Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
14 lines
297 B
Makefile
14 lines
297 B
Makefile
include ../../defines.mk
|
|
|
|
SOURCES=vzdump.pm pvesubscription.pm pveceph.pm pveam.pm pvesr.pm pvenode.pm pvesh.pm pve5to6.pm
|
|
|
|
all:
|
|
|
|
.PHONY: install
|
|
install: ${SOURCES}
|
|
install -d -m 0755 ${PERLLIBDIR}/PVE/CLI
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${PERLLIBDIR}/PVE/CLI/$$i; done
|
|
|
|
|
|
clean:
|