]> git.proxmox.com Git - pve-common.git/blobdiff - src/Makefile
add LDAP Wrapper code
[pve-common.git] / src / Makefile
index c81991d518d77efde9bfc1e691a29be20a9ba08d..ada166d83aff4c0a2f178c7e254a9749d1475e0c 100644 (file)
@@ -7,8 +7,12 @@ MAN1DIR=${MANDIR}/man1/
 PERLDIR=${PREFIX}/share/perl5
 
 LIB_SOURCES = \
+       ACME.pm \
+       ACME/Challenge.pm \
+       ACME/StandAlone.pm \
        AtomicFile.pm \
        Certificate.pm \
+       CLIFormatter.pm \
        CLIHandler.pm \
        CalendarEvent.pm \
        CpuSet.pm \
@@ -16,6 +20,7 @@ LIB_SOURCES = \
        Exception.pm \
        INotify.pm \
        JSONSchema.pm \
+       LDAP.pm \
        Network.pm \
        OTP.pm \
        PTY.pm \
@@ -26,6 +31,8 @@ LIB_SOURCES = \
        SectionConfig.pm \
        Subscription.pm \
        Syscall.pm \
+       SysFSTools.pm \
+       Systemd.pm \
        Ticket.pm \
        Tools.pm
 
@@ -34,6 +41,7 @@ all:
 .PHONY: install
 install:
        install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE
+       install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE/ACME
        for i in ${LIB_SOURCES}; do install -D -m 0644 PVE/$$i ${DESTDIR}${PERLDIR}/PVE/$$i; done