29 lines
409 B
Makefile
29 lines
409 B
Makefile
include ../../defines.mk
|
|
|
|
PERLSOURCE = \
|
|
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
|