]> git.proxmox.com Git - pve-container.git/blame - src/PVE/LXC/Makefile
Add module for reading state changes from monitor socket
[pve-container.git] / src / PVE / LXC / Makefile
CommitLineData
d92d0afd 1SOURCES= \
80c7e72f
WB
2 CGroup.pm \
3 Command.pm \
d92d0afd
WB
4 Config.pm \
5 Create.pm \
6 Migrate.pm \
8667164d 7 Monitor.pm \
d92d0afd
WB
8 Setup.pm \
9 Tools.pm
7af97ad5
DM
10
11.PHONY: install
12install: ${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