X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=blobdiff_plain;f=data%2FMakefile;fp=data%2FMakefile;h=0000000000000000000000000000000000000000;hp=5e500052cc27ee9772a82d839d33b7a79b11d219;hb=b51b16e6f58de4cb385bd461d97866b3d94c93ec;hpb=47e4eb112911b530d0646c1808fd06cbeb921572 diff --git a/data/Makefile b/data/Makefile deleted file mode 100644 index 5e50005..0000000 --- a/data/Makefile +++ /dev/null @@ -1,39 +0,0 @@ - -PREFIX=/usr -BINDIR=${PREFIX}/bin -MANDIR=${PREFIX}/share/man -DOCDIR=${PREFIX}/share/doc -MAN1DIR=${MANDIR}/man1/ -PERLDIR=${PREFIX}/share/perl5 - -LIB_SOURCES= \ - Daemon.pm \ - 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 -