]> git.proxmox.com Git - pve-manager.git/blob - PVE/API2/Makefile
makefile: convert to use simple parenthesis
[pve-manager.git] / PVE / API2 / Makefile
1 include ../../defines.mk
2
3 SUBDIRS=Hardware Ceph Cluster
4
5 PERLSOURCE = \
6 ACME.pm \
7 ACMEAccount.pm \
8 ACMEPlugin.pm \
9 APT.pm \
10 Backup.pm \
11 Capabilities.pm \
12 Ceph.pm \
13 Certificates.pm \
14 Cluster.pm \
15 HAConfig.pm \
16 Hardware.pm \
17 Network.pm \
18 NodeConfig.pm \
19 Nodes.pm \
20 Pool.pm \
21 Replication.pm \
22 ReplicationConfig.pm \
23 Services.pm \
24 Subscription.pm \
25 Tasks.pm \
26 VZDump.pm \
27
28 all:
29
30 .PHONY: clean
31 clean:
32 rm -rf *~
33 set -e && for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done
34
35 .PHONY: install
36 install: $(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