mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-04-28 13:00:18 +00:00
14 lines
277 B
Makefile
14 lines
277 B
Makefile
include ../../defines.mk
|
|
|
|
SOURCES=vzdump.pm pvesubscription.pm pveceph.pm pveam.pm pvesr.pm pvenode.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:
|