mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-16 17:40:11 +00:00
16 lines
224 B
Makefile
16 lines
224 B
Makefile
include ../../defines.mk
|
|
|
|
PERLSOURCE = \
|
|
VZDump.pm \
|
|
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|
|
|
|
.PHONY: install
|
|
install: $(PERLSOURCE)
|
|
install -d $(PERLLIBDIR)/PVE/Jobs
|
|
install -m 0644 $(PERLSOURCE) $(PERLLIBDIR)/PVE/Jobs
|