pve-manager/PVE/API2/Makefile
Thomas Lamprecht c6c4b2788d api: node: add capabilities path and move qemu machines over
avoid further crowding the top-level node API path with such
"what can some part of the node currently do" stuff, rather move it
down.

The QEMU cpu stuff should move also down there.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2021-03-05 21:31:32 +01:00

41 lines
721 B
Makefile

include ../../defines.mk
SUBDIRS=Hardware Ceph Cluster
PERLSOURCE = \
ACME.pm \
ACMEAccount.pm \
ACMEPlugin.pm \
APT.pm \
Backup.pm \
BackupInfo.pm \
Capabilities.pm \
Ceph.pm \
Certificates.pm \
Cluster.pm \
HAConfig.pm \
Hardware.pm \
Network.pm \
NodeConfig.pm \
Nodes.pm \
Pool.pm \
Replication.pm \
ReplicationConfig.pm \
Services.pm \
Subscription.pm \
Tasks.pm \
VZDump.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