]> git.proxmox.com Git - pve-access-control.git/blobdiff - PVE/Auth/Makefile
new plugin architecture for Auth modules
[pve-access-control.git] / PVE / Auth / Makefile
diff --git a/PVE/Auth/Makefile b/PVE/Auth/Makefile
new file mode 100644 (file)
index 0000000..58ae362
--- /dev/null
@@ -0,0 +1,11 @@
+
+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