mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-06-14 05:08:46 +00:00
31 lines
447 B
Makefile
31 lines
447 B
Makefile
include ../../defines.mk
|
|
|
|
PERLSOURCE = \
|
|
Ceph.pm \
|
|
APT.pm \
|
|
Subscription.pm \
|
|
VZDump.pm \
|
|
Backup.pm \
|
|
Cluster.pm \
|
|
HAConfig.pm \
|
|
Nodes.pm \
|
|
Pool.pm \
|
|
Tasks.pm \
|
|
Network.pm \
|
|
Services.pm
|
|
|
|
all:
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|
|
|
|
.PHONY: install
|
|
install: ${PERLSOURCE}
|
|
install -d ${PERLLIBDIR}/PVE/API2
|
|
install -m 0644 ${PERLSOURCE} ${PERLLIBDIR}/PVE/API2
|
|
make -C Formatter install
|