]> git.proxmox.com Git - pve-firewall.git/blame - src/PVE/Makefile
add better inline documentation
[pve-firewall.git] / src / PVE / Makefile
CommitLineData
8f119284
DM
1
2LIB_SOURCES= \
63e8c70e 3 FirewallSimulator.pm \
8f119284
DM
4 Firewall.pm
5
6all:
7
8.PHONY: install
9install:
10 install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE
11 for i in ${LIB_SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/$$i; done
12 make -C API2 install
13
14.PHONY: clean
15clean:
16 rm -rf *~
17 make -C API2 clean