pve-manager/PVE/API2/Makefile
Wolfgang Link b227e9d2ab Create ACME Plugin config.
With this configuration it is possible to use many different plugins
with different providers and users.

Signed-off-by: Wolfgang Link <w.link@proxmox.com>
2020-05-03 14:10:17 +02:00

40 lines
693 B
Makefile

include ../../defines.mk
SUBDIRS=Hardware Ceph Cluster
PERLSOURCE = \
Replication.pm \
ReplicationConfig.pm \
Ceph.pm \
APT.pm \
Subscription.pm \
VZDump.pm \
Backup.pm \
Cluster.pm \
HAConfig.pm \
Nodes.pm \
Pool.pm \
Tasks.pm \
Network.pm \
Certificates.pm \
ACME.pm \
ACMEAccount.pm \
ACMEPlugin.pm \
NodeConfig.pm \
Scan.pm \
Hardware.pm \
Services.pm
all:
.PHONY: clean
clean:
rm -rf *~
set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
.PHONY: install
install: ${PERLSOURCE}
install -d ${PERLLIBDIR}/PVE/API2
install -m 0644 ${PERLSOURCE} ${PERLLIBDIR}/PVE/API2
set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done