mirror of
https://git.proxmox.com/git/pve-access-control
synced 2025-06-13 13:15:30 +00:00
13 lines
227 B
Makefile
13 lines
227 B
Makefile
|
|
API2_SOURCES= \
|
|
AccessControl.pm \
|
|
Domains.pm \
|
|
ACL.pm \
|
|
Role.pm \
|
|
Group.pm \
|
|
User.pm
|
|
|
|
.PHONY: install
|
|
install:
|
|
for i in ${API2_SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/API2/$$i; done
|