mirror of
https://git.proxmox.com/git/pve-access-control
synced 2025-08-03 04:45:49 +00:00
10 lines
199 B
Makefile
10 lines
199 B
Makefile
SOURCES=pveum.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
|
|
|
|
|
|
clean:
|