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