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

for better handling and since the pool endpoints got more entries. Signed-off-by: Alwin Antreich <a.antreich@proxmox.com>
21 lines
292 B
Makefile
21 lines
292 B
Makefile
include ../../../defines.mk
|
|
|
|
PERLSOURCE= \
|
|
MGR.pm \
|
|
MON.pm \
|
|
OSD.pm \
|
|
FS.pm \
|
|
Pools.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
|