]> git.proxmox.com Git - pve-http-server.git/blob - src/Makefile
requests: assert that theres no @ in the URLs authority
[pve-http-server.git] / src / Makefile
1 DESTDIR=
2 PERL5DIR=${DESTDIR}/usr/share/perl5
3 DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
4
5 all:
6
7 install: PVE
8 install -d -m 755 ${PERL5DIR}/PVE/APIServer
9 install -m 0644 PVE/APIServer/AnyEvent.pm ${PERL5DIR}/PVE/APIServer
10 install -m 0644 PVE/APIServer/Formatter.pm ${PERL5DIR}/PVE/APIServer
11 install -m 0644 PVE/APIServer/Utils.pm ${PERL5DIR}/PVE/APIServer
12 install -d -m 755 ${PERL5DIR}/PVE/APIServer/Formatter
13 install -m 0644 PVE/APIServer/Formatter/Standard.pm ${PERL5DIR}/PVE/APIServer/Formatter
14 install -m 0644 PVE/APIServer/Formatter/Bootstrap.pm ${PERL5DIR}/PVE/APIServer/Formatter
15 install -m 0644 PVE/APIServer/Formatter/HTML.pm ${PERL5DIR}/PVE/APIServer/Formatter
16
17 .PHONY: clean distclean
18 distclean: clean
19 rm -f examples/simple-demo.pem
20
21 clean:
22 rm -rf examples/simple-demo.lck
23 find . -name '*~' -exec rm {} ';'