]> git.proxmox.com Git - pve-firewall.git/blob - src/PVE/API2/Firewall/Makefile
start API for IPSet
[pve-firewall.git] / src / PVE / API2 / Firewall / Makefile
1 LIB_SOURCES= \
2 IPSet.pm \
3 Rules.pm \
4 Cluster.pm \
5 Host.pm \
6 VM.pm \
7 Groups.pm
8
9 all:
10
11 .PHONY: install
12 install:
13 install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE/API2/Firewall
14 for i in ${LIB_SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/API2/Firewall/$$i; done
15
16
17 .PHONY: clean
18 clean:
19 rm -rf *~