]> git.proxmox.com Git - pve-common.git/blob - src/Makefile
Add AbstractConfig base class
[pve-common.git] / src / Makefile
1
2 PREFIX=/usr
3 BINDIR=${PREFIX}/bin
4 MANDIR=${PREFIX}/share/man
5 DOCDIR=${PREFIX}/share/doc
6 MAN1DIR=${MANDIR}/man1/
7 PERLDIR=${PREFIX}/share/perl5
8
9 LIB_SOURCES= \
10 Daemon.pm \
11 SectionConfig.pm \
12 Network.pm \
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 \
22 AbstractMigrate.pm \
23 Exception.pm \
24 AbstractConfig.pm
25
26 all:
27
28 .PHONY: install
29 install:
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
35 clean:
36 rm -rf *~
37
38 .PHONY: distclean
39 distclean: clean
40