]> git.proxmox.com Git - pve-common.git/blobdiff - data/Makefile
rename data to src
[pve-common.git] / data / Makefile
diff --git a/data/Makefile b/data/Makefile
deleted file mode 100644 (file)
index 5e50005..0000000
+++ /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
-