]> git.proxmox.com Git - pve-manager.git/blame - PVE/CLI/Makefile
buildsys: split list of CLI sources over multiple lines
[pve-manager.git] / PVE / CLI / Makefile
CommitLineData
9a225ed5
DM
1include ../../defines.mk
2
1c456ee3
TL
3SOURCES = \
4 vzdump.pm \
5 pvesubscription.pm \
6 pveceph.pm \
7 pveam.pm \
8 pvesr.pm \
9 pvenode.pm \
10 pvesh.pm \
11 pve6to7.pm \
9a225ed5 12
ad95f6af
DM
13all:
14
9a225ed5 15.PHONY: install
147d67c4
TL
16install: $(SOURCES)
17 install -d -m 0755 $(PERLLIBDIR)/PVE/CLI
18 for i in $(SOURCES); do install -D -m 0644 $$i $(PERLLIBDIR)/PVE/CLI/$$i; done
9a225ed5
DM
19
20
21clean: