mirror of
git://git.proxmox.com/git/qemu-server.git
synced 2025-03-08 04:58:26 +03:00
9 lines
202 B
Makefile
9 lines
202 B
Makefile
SOURCES=qm.pm qmrestore.pm
|
|
|
|
.PHONY: install
|
|
install: ${SOURCES}
|
|
install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE/CLI
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/CLI/$$i; done
|
|
|
|
|