]> git.proxmox.com Git - pve-manager.git/blob - PVE/API2/Makefile
bump version to 5.4-15
[pve-manager.git] / PVE / API2 / Makefile
1 include ../../defines.mk
2
3 SUBDIRS=Hardware Ceph
4
5 PERLSOURCE = \
6 Replication.pm \
7 ReplicationConfig.pm \
8 Ceph.pm \
9 APT.pm \
10 Subscription.pm \
11 VZDump.pm \
12 Backup.pm \
13 Cluster.pm \
14 HAConfig.pm \
15 Nodes.pm \
16 Pool.pm \
17 Tasks.pm \
18 Network.pm \
19 Certificates.pm \
20 ACME.pm \
21 ACMEAccount.pm \
22 NodeConfig.pm \
23 Scan.pm \
24 Hardware.pm \
25 Services.pm
26
27 all:
28
29 .PHONY: clean
30 clean:
31 rm -rf *~
32 set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
33
34 .PHONY: install
35 install: ${PERLSOURCE}
36 install -d ${PERLLIBDIR}/PVE/API2
37 install -m 0644 ${PERLSOURCE} ${PERLLIBDIR}/PVE/API2
38 set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done