mirror of
https://git.proxmox.com/git/pve-common
synced 2025-08-20 20:16:58 +00:00
39 lines
628 B
Makefile
39 lines
628 B
Makefile
|
|
PREFIX=/usr
|
|
BINDIR=${PREFIX}/bin
|
|
MANDIR=${PREFIX}/share/man
|
|
DOCDIR=${PREFIX}/share/doc
|
|
MAN1DIR=${MANDIR}/man1/
|
|
PERLDIR=${PREFIX}/share/perl5
|
|
|
|
LIB_SOURCES= \
|
|
SectionConfig.pm \
|
|
Network.pm \
|
|
ProcFSTools.pm \
|
|
PodParser.pm \
|
|
CLIHandler.pm \
|
|
RESTHandler.pm \
|
|
JSONSchema.pm \
|
|
SafeSyslog.pm \
|
|
AtomicFile.pm \
|
|
INotify.pm \
|
|
Tools.pm \
|
|
AbstractMigrate.pm \
|
|
Exception.pm
|
|
|
|
all:
|
|
|
|
.PHONY: install
|
|
install:
|
|
install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE
|
|
for i in ${LIB_SOURCES}; do install -D -m 0644 PVE/$$i ${DESTDIR}${PERLDIR}/PVE/$$i; done
|
|
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
|