mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-14 21:28:40 +00:00
23 lines
318 B
Makefile
23 lines
318 B
Makefile
include ../../../defines.mk
|
|
|
|
PERLSOURCE= \
|
|
Cfg.pm \
|
|
MGR.pm \
|
|
MON.pm \
|
|
OSD.pm \
|
|
FS.pm \
|
|
Pool.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
|