mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-25 08:26:41 +00:00
17 lines
235 B
Makefile
17 lines
235 B
Makefile
include ../../defines.mk
|
|
|
|
PERLSOURCE = \
|
|
Services.pm\
|
|
Tools.pm
|
|
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|
|
|
|
.PHONY: install
|
|
install: $(PERLSOURCE)
|
|
install -d $(PERLLIBDIR)/PVE/Ceph
|
|
install -m 0644 $(PERLSOURCE) $(PERLLIBDIR)/PVE/Ceph
|