pve-manager/PVE/CLI/Makefile
2018-07-27 07:46:35 +02:00

14 lines
286 B
Makefile

include ../../defines.mk
SOURCES=vzdump.pm pvesubscription.pm pveceph.pm pveam.pm pvesr.pm pvenode.pm pvesh.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: