mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-12 19:42:39 +00:00
20 lines
279 B
Makefile
20 lines
279 B
Makefile
include ../../../defines.mk
|
|
|
|
PERLSOURCE= \
|
|
MGR.pm \
|
|
MON.pm \
|
|
OSD.pm \
|
|
FS.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
|