Files
pve-storage/PVE/API2/Disks/Makefile
Dominik Csapak c84106edc9 add API for ZFS management
a list, a detail and a create api call

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
2018-08-08 08:02:14 +02:00

10 lines
177 B
Makefile

SOURCES= LVM.pm\
LVMThin.pm\
ZFS.pm\
Directory.pm
.PHONY: install
install:
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/API2/Disks/$$i; done