We want to share code and use new PVE 2 framework features. So it is no longer possible to distribute this a separate packages.
20 lines
280 B
Makefile
20 lines
280 B
Makefile
include ../../defines.mk
|
|
|
|
PERLSOURCE = \
|
|
OpenVZ.pm \
|
|
Plugin.pm
|
|
|
|
all:
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|
|
|
|
.PHONY: install
|
|
install: ${PERLSOURCE}
|
|
install -d ${PERLLIBDIR}/PVE/VZDump
|
|
install -m 0644 ${PERLSOURCE} ${PERLLIBDIR}/PVE/VZDump
|