]> git.proxmox.com Git - pve-common.git/blame - src/Makefile
bump version to 4.0-87
[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= \
d9072797 10 RESTEnvironment.pm \
a1c3f18e 11 CpuSet.pm \
390802ab 12 Daemon.pm \
212b08e8 13 SectionConfig.pm \
b9436cda 14 Network.pm \
e143e9d8 15 ProcFSTools.pm \
e143e9d8
DM
16 CLIHandler.pm \
17 RESTHandler.pm \
18 JSONSchema.pm \
19 SafeSyslog.pm \
20 AtomicFile.pm \
21 INotify.pm \
22 Tools.pm \
643adc82 23 AbstractMigrate.pm \
53c25521
FG
24 Exception.pm \
25 AbstractConfig.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