]> git.proxmox.com Git - pve-firewall.git/blame_incremental - src/PVE/API2/Firewall/Makefile
bump version to 5.0.5
[pve-firewall.git] / src / PVE / API2 / Firewall / Makefile
... / ...
CommitLineData
1DESTDIR=
2PREFIX=/usr
3PERLDIR=${DESTDIR}/${PREFIX}/share/perl5
4
5LIB_SOURCES= \
6 Aliases.pm \
7 IPSet.pm \
8 Rules.pm \
9 Cluster.pm \
10 Host.pm \
11 VM.pm \
12 Groups.pm
13
14all:
15
16.PHONY: install
17install:
18 install -d -m 0755 ${PERLDIR}/PVE/API2/Firewall
19 for i in ${LIB_SOURCES}; do install -D -m 0644 $$i ${PERLDIR}/PVE/API2/Firewall/$$i; done
20
21
22.PHONY: clean
23clean:
24 rm -rf *~