]> git.proxmox.com Git - pve-common.git/blobdiff - src/Makefile
CLIFormatter - implement renderer for timestamps using GMT
[pve-common.git] / src / Makefile
index e544882bd9638fb069aeb2450a4f5b972db5c172..3d9bdb8f9f64ecb52752e73d17959f86e967e409 100644 (file)
@@ -7,7 +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 \
@@ -25,6 +30,7 @@ LIB_SOURCES = \
        SectionConfig.pm \
        Subscription.pm \
        Syscall.pm \
+       Systemd.pm \
        Ticket.pm \
        Tools.pm
 
@@ -33,6 +39,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