mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-06-03 19:46:34 +00:00
30 lines
421 B
Makefile
30 lines
421 B
Makefile
include ../../defines.mk
|
|
|
|
PERLSOURCE = \
|
|
APT.pm \
|
|
Subscription.pm \
|
|
VZDump.pm \
|
|
Backup.pm \
|
|
Cluster.pm \
|
|
HAConfig.pm \
|
|
Nodes.pm \
|
|
Pool.pm \
|
|
Tasks.pm \
|
|
Network.pm \
|
|
Services.pm \
|
|
OpenVZ.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
|