]> git.proxmox.com Git - pve-common.git/blame - src/Makefile
pty: add read_password helper
[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= \
2f1cb7ef 10 Subscription.pm \
2244b271 11 CalendarEvent.pm \
06a0313f 12 OTP.pm \
8ecb08d7 13 Ticket.pm \
d9072797 14 RESTEnvironment.pm \
a1c3f18e 15 CpuSet.pm \
390802ab 16 Daemon.pm \
212b08e8 17 SectionConfig.pm \
b9436cda 18 Network.pm \
e143e9d8 19 ProcFSTools.pm \
e143e9d8
DM
20 CLIHandler.pm \
21 RESTHandler.pm \
22 JSONSchema.pm \
23 SafeSyslog.pm \
24 AtomicFile.pm \
25 INotify.pm \
26 Tools.pm \
c8e94d4b 27 Syscall.pm \
c480d509 28 Exception.pm
e143e9d8
DM
29
30all:
31
32.PHONY: install
33install:
34 install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE
35 for i in ${LIB_SOURCES}; do install -D -m 0644 PVE/$$i ${DESTDIR}${PERLDIR}/PVE/$$i; done
36
37
38.PHONY: clean
39clean:
40 rm -rf *~
41
42.PHONY: distclean
43distclean: clean
44