diff options
author | Martijn Kaijser <mcm.kaijser@gmail.com> | 2016-06-18 09:33:23 +0200 |
---|---|---|
committer | Martijn Kaijser <mcm.kaijser@gmail.com> | 2016-06-18 09:33:23 +0200 |
commit | 6080883892606f48c845ae61396b5373a741a705 (patch) | |
tree | be4ef0fcd24f2c7067f4dfba77f07bea251f56d5 /tools | |
parent | 9248a82331e5311e8a5a15ce0ac8a84a7600ad07 (diff) |
[depends] remove libmodplug as it's now a binary add-on
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/target/Makefile | 2 | ||||
-rw-r--r-- | tools/depends/target/libmodplug/Makefile | 42 |
2 files changed, 1 insertions, 43 deletions
diff --git a/tools/depends/target/Makefile b/tools/depends/target/Makefile index 5d743f4c6e..2f0c831410 100644 --- a/tools/depends/target/Makefile +++ b/tools/depends/target/Makefile @@ -9,7 +9,7 @@ DEPENDS = \ libgcrypt bzip2 liblzo2 libzip freetype2 fontconfig \ openssl gmp nettle gnutls curl \ libjpeg-turbo libpng fribidi libass \ - libmodplug librtmp libxml2 yajl libmicrohttpd mysql libffi \ + librtmp libxml2 yajl libmicrohttpd mysql libffi \ python27 libshairplay \ libplist libcec libbluray tinyxml dummy-libxbmc \ libamplayer libssh taglib libusb libnfs \ diff --git a/tools/depends/target/libmodplug/Makefile b/tools/depends/target/libmodplug/Makefile deleted file mode 100644 index e2d2440b68..0000000000 --- a/tools/depends/target/libmodplug/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -include ../../Makefile.include -DEPS= ../../Makefile.include Makefile - -# lib name, version -LIBNAME=libmodplug -VERSION=0.8.7 -SOURCE=$(LIBNAME)-$(VERSION) -ARCHIVE=$(SOURCE).tar.gz - -# configuration settings -CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \ - ./configure --prefix=$(PREFIX) - -LIBDYLIB=$(PLATFORM)/src/.libs/$(LIBNAME).la - -CLEAN_FILES=$(ARCHIVE) $(PLATFORM) - -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) - cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) - cd $(PLATFORM); $(AUTORECONF) -vif - cd $(PLATFORM); $(CONFIGURE) - -$(LIBDYLIB): $(PLATFORM) - $(MAKE) -C $(PLATFORM) - -.installed-$(PLATFORM): $(LIBDYLIB) - $(MAKE) -C $(PLATFORM) install - touch $@ - -clean: - $(MAKE) -C $(PLATFORM) clean - rm -f .installed-$(PLATFORM) - -distclean:: - rm -rf $(PLATFORM) .installed-$(PLATFORM) - |