mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-24 11:55:17 +00:00
22 lines
325 B
Makefile
22 lines
325 B
Makefile
include ../../defines.mk
|
|
|
|
SOURCES = \
|
|
vzdump.pm \
|
|
pvesubscription.pm \
|
|
pveceph.pm \
|
|
pveam.pm \
|
|
pvesr.pm \
|
|
pvenode.pm \
|
|
pvesh.pm \
|
|
pve7to8.pm \
|
|
|
|
all:
|
|
|
|
.PHONY: install
|
|
install: $(SOURCES)
|
|
install -d -m 0755 $(PERLLIBDIR)/PVE/CLI
|
|
for i in $(SOURCES); do install -D -m 0644 $$i $(PERLLIBDIR)/PVE/CLI/$$i; done
|
|
|
|
|
|
clean:
|