]> git.proxmox.com Git - pve-common.git/blame - src/Makefile
schema: register 'timezone' format and add verification method
[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
1672bfe5
WB
9LIB_SOURCES = \
10 AtomicFile.pm \
4e0952c9 11 Certificate.pm \
f53ad23a 12 CLIFormatter.pm \
1672bfe5
WB
13 CLIHandler.pm \
14 CalendarEvent.pm \
15 CpuSet.pm \
16 Daemon.pm \
17 Exception.pm \
18 INotify.pm \
19 JSONSchema.pm \
261ea3ca 20 LDAP.pm \
1672bfe5
WB
21 Network.pm \
22 OTP.pm \
23 PTY.pm \
24 ProcFSTools.pm \
25 RESTEnvironment.pm \
26 RESTHandler.pm \
27 SafeSyslog.pm \
28 SectionConfig.pm \
29 Subscription.pm \
30 Syscall.pm \
f0765c71 31 SysFSTools.pm \
eae43687 32 Systemd.pm \
1672bfe5
WB
33 Ticket.pm \
34 Tools.pm
e143e9d8
DM
35
36all:
37
38.PHONY: install
39install:
40 install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE
41 for i in ${LIB_SOURCES}; do install -D -m 0644 PVE/$$i ${DESTDIR}${PERLDIR}/PVE/$$i; done
42
43
44.PHONY: clean
45clean:
46 rm -rf *~
47
48.PHONY: distclean
49distclean: clean
50