mirror of
https://git.proxmox.com/git/pve-access-control
synced 2025-08-16 19:48:17 +00:00
12 lines
202 B
Makefile
12 lines
202 B
Makefile
|
|
AUTH_SOURCES= \
|
|
Plugin.pm \
|
|
PVE.pm \
|
|
PAM.pm \
|
|
AD.pm \
|
|
LDAP.pm
|
|
|
|
.PHONY: install
|
|
install:
|
|
for i in ${AUTH_SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/Auth/$$i; done
|