]> git.proxmox.com Git - pve-common.git/blame - src/Makefile
bump version to 4.0-81
[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= \
a1c3f18e 10 CpuSet.pm \
390802ab 11 Daemon.pm \
212b08e8 12 SectionConfig.pm \
b9436cda 13 Network.pm \
e143e9d8 14 ProcFSTools.pm \
e143e9d8
DM
15 CLIHandler.pm \
16 RESTHandler.pm \
17 JSONSchema.pm \
18 SafeSyslog.pm \
19 AtomicFile.pm \
20 INotify.pm \
21 Tools.pm \
643adc82 22 AbstractMigrate.pm \
53c25521
FG
23 Exception.pm \
24 AbstractConfig.pm
e143e9d8
DM
25
26all:
27
28.PHONY: install
29install:
30 install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE
31 for i in ${LIB_SOURCES}; do install -D -m 0644 PVE/$$i ${DESTDIR}${PERLDIR}/PVE/$$i; done
32
33
34.PHONY: clean
35clean:
36 rm -rf *~
37
38.PHONY: distclean
39distclean: clean
40