]> git.proxmox.com Git - pve-firewall.git/blame - src/PVE/API2/Firewall/Makefile
makefile: convert to use simple parenthesis
[pve-firewall.git] / src / PVE / API2 / Firewall / Makefile
CommitLineData
43be6155
TL
1DESTDIR=
2PREFIX=/usr
5d223aa3 3PERLDIR=$(DESTDIR)/$(PREFIX)/share/perl5
43be6155 4
8f119284 5LIB_SOURCES= \
81d574a7 6 Aliases.pm \
009ee3ac 7 IPSet.pm \
86791289 8 Rules.pm \
b4366f00 9 Cluster.pm \
8b27beb9 10 Host.pm \
e7b35711 11 VM.pm \
8f119284
DM
12 Groups.pm
13
14all:
15
16.PHONY: install
17install:
5d223aa3
TL
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
8f119284
DM
20
21
22.PHONY: clean
23clean:
24 rm -rf *~