]> git.proxmox.com Git - pve-manager.git/blame - PVE/API2/Makefile
update shipped appliance info index
[pve-manager.git] / PVE / API2 / Makefile
CommitLineData
beb651ee
DM
1include ../../defines.mk
2
78ad23f8 3SUBDIRS=Hardware Ceph Cluster
523d5f48 4
beb651ee 5PERLSOURCE = \
cc5e0685
TL
6 ACME.pm \
7 ACMEAccount.pm \
8 ACMEPlugin.pm \
21299915 9 APT.pm \
ac27b58d 10 Backup.pm \
c6c4b278 11 Capabilities.pm \
cc5e0685
TL
12 Ceph.pm \
13 Certificates.pm \
beb651ee 14 Cluster.pm \
a06a3eac 15 HAConfig.pm \
cc5e0685
TL
16 Hardware.pm \
17 Network.pm \
18 NodeConfig.pm \
beb651ee 19 Nodes.pm \
f16eb02d 20 Pool.pm \
cc5e0685
TL
21 Replication.pm \
22 ReplicationConfig.pm \
23 Services.pm \
24 Subscription.pm \
beb651ee 25 Tasks.pm \
cc5e0685 26 VZDump.pm \
beb651ee
DM
27
28all:
29
beb651ee
DM
30.PHONY: clean
31clean:
32 rm -rf *~
147d67c4 33 set -e && for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done
beb651ee
DM
34
35.PHONY: install
147d67c4
TL
36install: $(PERLSOURCE)
37 install -d $(PERLLIBDIR)/PVE/API2
38 install -m 0644 $(PERLSOURCE) $(PERLLIBDIR)/PVE/API2
39 set -e && for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done