]> git.proxmox.com Git - pve-container.git/blame - src/PVE/LXC/Setup/Makefile
setup: add abstract plugin module
[pve-container.git] / src / PVE / LXC / Setup / Makefile
CommitLineData
2ff280b9 1SOURCES=\
4526287a 2 Plugin.pm \
2ff280b9
TL
3 Base.pm \
4 Alpine.pm \
5 ArchLinux.pm \
6 CentOS.pm \
7 Debian.pm \
8 Devuan.pm \
9 Fedora.pm \
10 Gentoo.pm \
11 SUSE.pm \
12 Ubuntu.pm \
1c7f4f65
DM
13
14.PHONY: install
15install:
7af97ad5
DM
16 install -d -m 0755 ${PERLDIR}/PVE/LXC/Setup
17 for i in ${SOURCES}; do install -D -m 0644 $$i ${PERLDIR}/PVE/LXC/Setup/$$i; done