]> git.proxmox.com Git - pve-common.git/blobdiff - src/Makefile
bump version to 8.2.1
[pve-common.git] / src / Makefile
index 1c8c44d5a2044002cb898b6983dd73c6acc65584..2d8bdc40c0fe11a62b2fc9e9ae9ce9cc9bf4c99a 100644 (file)
@@ -19,6 +19,7 @@ LIB_SOURCES = \
        Format.pm \
        INotify.pm \
        JSONSchema.pm \
+       Job/Registry.pm \
        LDAP.pm \
        Network.pm \
        OTP.pm \
@@ -29,7 +30,6 @@ LIB_SOURCES = \
        RESTHandler.pm \
        SafeSyslog.pm \
        SectionConfig.pm \
-       Subscription.pm \
        SysFSTools.pm \
        Syscall.pm \
        Systemd.pm \
@@ -38,9 +38,9 @@ LIB_SOURCES = \
 
 all:
 
-.PHONY: install
-install:
+install: $(addprefix PVE/,${LIB_SOURCES})
        install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE
+       install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE/Job
        for i in ${LIB_SOURCES}; do install -D -m 0644 PVE/$$i ${DESTDIR}${PERLDIR}/PVE/$$i; done