]> git.proxmox.com Git - pve-storage.git/commitdiff
add missing Makefile to install LunCmd/ modules
authorDietmar Maurer <dietmar@proxmox.com>
Fri, 18 Oct 2013 07:41:16 +0000 (09:41 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 18 Oct 2013 07:41:16 +0000 (09:41 +0200)
PVE/Storage/LunCmd/Makefile [new file with mode: 0644]
PVE/Storage/Makefile

diff --git a/PVE/Storage/LunCmd/Makefile b/PVE/Storage/LunCmd/Makefile
new file mode 100644 (file)
index 0000000..fce2b80
--- /dev/null
@@ -0,0 +1,5 @@
+SOURCES=Comstar.pm Istgt.pm
+
+.PHONY: install
+install:
+       for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/Storage/LunCmd/$$i; done
index 818c98afb25f405f489b94d7ae0b2a44988f687c..919c486028d19ea28d803eb44f472c716c299b65 100644 (file)
@@ -3,3 +3,4 @@ SOURCES=Plugin.pm DirPlugin.pm LVMPlugin.pm NFSPlugin.pm ISCSIPlugin.pm RBDPlugi
 .PHONY: install
 install:
        for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/Storage/$$i; done
+       make -C LunCmd install