]> git.proxmox.com Git - pve-common.git/blame - data/Makefile
bump version to 3.0-22
[pve-common.git] / data / 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= \
390802ab 10 Daemon.pm \
212b08e8 11 SectionConfig.pm \
b9436cda 12 Network.pm \
e143e9d8
DM
13 ProcFSTools.pm \
14 PodParser.pm \
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 \
e143e9d8
DM
23 Exception.pm
24
25all:
26
27.PHONY: install
28install:
29 install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE
30 for i in ${LIB_SOURCES}; do install -D -m 0644 PVE/$$i ${DESTDIR}${PERLDIR}/PVE/$$i; done
31
32
33.PHONY: clean
34clean:
35 rm -rf *~
36
37.PHONY: distclean
38distclean: clean
39