aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRechi <Rechi@users.noreply.github.com>2019-01-30 22:53:40 +0100
committerRechi <Rechi@users.noreply.github.com>2019-01-30 22:53:40 +0100
commitf7ee212e6b042effb983dc3ffab35b7f6a86a221 (patch)
tree12ea80d9ad941237a05b92d720d41268cb4dd6d8 /tools
parent960d4c7fc69be3828379445fd3d26c8e23884e82 (diff)
[depends] remove unused platform lib
Diffstat (limited to 'tools')
-rw-r--r--tools/depends/target/Makefile3
-rw-r--r--tools/depends/target/platform/Makefile34
2 files changed, 1 insertions, 36 deletions
diff --git a/tools/depends/target/Makefile b/tools/depends/target/Makefile
index 493213d27c..fd6d9c3762 100644
--- a/tools/depends/target/Makefile
+++ b/tools/depends/target/Makefile
@@ -14,7 +14,7 @@ DEPENDS = \
libplist libcec libbluray tinyxml \
taglib libusb libnfs \
pythonmodule-pil pythonmodule-pycryptodome pythonmodule-setuptools \
- libxslt ffmpeg platform crossguid \
+ libxslt ffmpeg crossguid \
libdvdread libdvdnav libdvdcss p8-platform flatbuffers
@@ -109,7 +109,6 @@ pythonmodule-pil: bzip2 $(PYMODULE_DEPS) $(ZLIB) libjpeg-turbo libpng freetype2
pythonmodule-setuptools: $(PYMODULE_DEPS) python27
libxslt: libgcrypt libxml2
ffmpeg: $(ICONV) $(ZLIB) bzip2 $(FFMPEG_DEPENDS)
-platform: p8-platform
libcec: p8-platform
crossguid: $(CROSSGUID_DEPS)
libdvdnav: libdvdread
diff --git a/tools/depends/target/platform/Makefile b/tools/depends/target/platform/Makefile
deleted file mode 100644
index 8dd310665f..0000000000
--- a/tools/depends/target/platform/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile
-
-# lib name, version
-LIBNAME=platform
-VERSION=1.0.10
-SOURCE=$(LIBNAME)-$(VERSION)
-ARCHIVE=$(SOURCE).tar.gz
-
-LIBDYLIB=$(PLATFORM)/build/lib$(LIBNAME).a
-
-all: .installed-$(PLATFORM)
-
-$(TARBALLS_LOCATION)/$(ARCHIVE):
- cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)
-
-$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS)
- rm -rf $(PLATFORM); mkdir -p $(PLATFORM)/build
- cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE)
- cd $(PLATFORM)/build; $(CMAKE) -DBUILD_SHARED_LIBS=0 -DCMAKE_INSTALL_LIBDIR=$(PREFIX)/lib ..
-
-$(LIBDYLIB): $(PLATFORM)
- $(MAKE) -C $(PLATFORM)/build
-
-.installed-$(PLATFORM): $(LIBDYLIB)
- $(MAKE) -C $(PLATFORM)/build install
- touch $@
-
-clean:
- rm -rf $(PLATFORM) .installed-$(PLATFORM)
-
-distclean::
- rm -rf $(PLATFORM) .installed-$(PLATFORM)
-