]> git.proxmox.com Git - pve-firewall.git/blob - src/PVE/API2/Firewall/Makefile
bump version to 5.0.5
[pve-firewall.git] / src / PVE / API2 / Firewall / Makefile
1 DESTDIR=
2 PREFIX=/usr
3 PERLDIR=$(DESTDIR)/$(PREFIX)/share/perl5
4
5 LIB_SOURCES= \
6 Aliases.pm \
7 IPSet.pm \
8 Rules.pm \
9 Cluster.pm \
10 Host.pm \
11 VM.pm \
12 Groups.pm
13
14 all:
15
16 .PHONY: install
17 install:
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
23 clean:
24 rm -rf *~