mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-15 23:05:03 +00:00

The replacement is Pool (singular). Signed-off-by: Aaron Lauterer <a.lauterer@proxmox.com>
22 lines
305 B
Makefile
22 lines
305 B
Makefile
include ../../../defines.mk
|
|
|
|
PERLSOURCE= \
|
|
Cfg.pm \
|
|
MGR.pm \
|
|
MON.pm \
|
|
OSD.pm \
|
|
FS.pm \
|
|
Pool.pm \
|
|
MDS.pm
|
|
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|
|
|
|
.PHONY: install
|
|
install: $(PERLSOURCE)
|
|
install -d $(PERLLIBDIR)/PVE/API2/Ceph
|
|
install -m 0644 $(PERLSOURCE) $(PERLLIBDIR)/PVE/API2/Ceph
|