]> git.proxmox.com Git - pve-container.git/blob - src/PVE/LXC/Makefile
migrate: also set targetsid for unreferenced disks
[pve-container.git] / src / PVE / LXC / Makefile
1 SOURCES= \
2 CGroup.pm \
3 Command.pm \
4 Config.pm \
5 Create.pm \
6 Migrate.pm \
7 Monitor.pm \
8 Setup.pm \
9 Tools.pm
10
11 .PHONY: install
12 install: ${SOURCES}
13 install -d -m 0755 ${PERLDIR}/PVE/LXC
14 for i in ${SOURCES}; do install -D -m 0644 $$i ${PERLDIR}/PVE/LXC/$$i; done
15 make -C Setup install
16
17