]> git.proxmox.com Git - pve-container.git/blame - src/PVE/LXC/Setup/Makefile
setup: add no-op plugin for unmanaged CTs
[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 \
7db46e47 13 Unmanaged.pm \
1c7f4f65
DM
14
15.PHONY: install
16install:
7af97ad5
DM
17 install -d -m 0755 ${PERLDIR}/PVE/LXC/Setup
18 for i in ${SOURCES}; do install -D -m 0644 $$i ${PERLDIR}/PVE/LXC/Setup/$$i; done