mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-16 17:40:11 +00:00

This commit adds a new Perl module, PVE::API2::Cluster::Notification. The module will contain all API handlers for the new notification subsystem. Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
27 lines
588 B
Makefile
27 lines
588 B
Makefile
include ../../../defines.mk
|
|
|
|
SUBDIRS=Mapping
|
|
|
|
# for node independent, cluster-wide applicable, API endpoints
|
|
# ensure we do not conflict with files shipped by pve-cluster!!
|
|
PERLSOURCE= \
|
|
BackupInfo.pm \
|
|
MetricServer.pm \
|
|
Mapping.pm \
|
|
Notifications.pm \
|
|
Jobs.pm \
|
|
Ceph.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/Cluster
|
|
install -m 0644 $(PERLSOURCE) $(PERLLIBDIR)/PVE/API2/Cluster
|
|
set -e && for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done
|