]> git.proxmox.com Git - pve-container.git/blame - src/PVE/Makefile
migrate: also set targetsid for unreferenced disks
[pve-container.git] / src / PVE / Makefile
CommitLineData
7af97ad5 1SOURCES=LXC.pm
f76a2828
DM
2
3.PHONY: install
81bee809 4install: ${SOURCES}
f76a2828
DM
5 install -d -m 0755 ${PERLDIR}/PVE
6 for i in ${SOURCES}; do install -D -m 0644 $$i ${PERLDIR}/PVE/$$i; done
7 make -C API2 install
7af97ad5 8 make -C LXC install
d14a9a1b 9 make -C VZDump install
9beee926 10 make -C CLI install
1c7f4f65 11
f76a2828 12