]> git.proxmox.com Git - pve-common.git/blame - src/Makefile
OTP.pm: new class with OTP helpers
[pve-common.git] / src / Makefile
CommitLineData
e143e9d8
DM
1
2PREFIX=/usr
3BINDIR=${PREFIX}/bin
4MANDIR=${PREFIX}/share/man
5DOCDIR=${PREFIX}/share/doc
6MAN1DIR=${MANDIR}/man1/
7PERLDIR=${PREFIX}/share/perl5
8
9LIB_SOURCES= \
06a0313f 10 OTP.pm \
8ecb08d7 11 Ticket.pm \
d9072797 12 RESTEnvironment.pm \
a1c3f18e 13 CpuSet.pm \
390802ab 14 Daemon.pm \
212b08e8 15 SectionConfig.pm \
b9436cda 16 Network.pm \
e143e9d8 17 ProcFSTools.pm \
e143e9d8
DM
18 CLIHandler.pm \
19 RESTHandler.pm \
20 JSONSchema.pm \
21 SafeSyslog.pm \
22 AtomicFile.pm \
23 INotify.pm \
24 Tools.pm \
c480d509 25 Exception.pm
e143e9d8
DM
26
27all:
28
29.PHONY: install
30install:
31 install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE
32 for i in ${LIB_SOURCES}; do install -D -m 0644 PVE/$$i ${DESTDIR}${PERLDIR}/PVE/$$i; done
33
34
35.PHONY: clean
36clean:
37 rm -rf *~
38
39.PHONY: distclean
40distclean: clean
41