diff options
Diffstat (limited to 'tools/depends/target/libdvdcss/Makefile')
-rw-r--r-- | tools/depends/target/libdvdcss/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/depends/target/libdvdcss/Makefile b/tools/depends/target/libdvdcss/Makefile index 4ef9ec6b68..b157eee34d 100644 --- a/tools/depends/target/libdvdcss/Makefile +++ b/tools/depends/target/libdvdcss/Makefile @@ -1,6 +1,6 @@ -include ../../Makefile.include include LIBDVDCSS-VERSION -DEPS= LIBDVDCSS-VERSION Makefile +DEPS = LIBDVDCSS-VERSION Makefile ../../download-files.include ifeq ($(CROSS_COMPILING), yes) DEPS += ../../Makefile.include @@ -21,6 +21,7 @@ ARCHIVE_TOOL := tar --strip-components=1 -xf # configuration settings config = --prefix=$(PREFIX) --disable-shared --enable-static --with-pic +include ../../download-files.include all: .installed-$(PLATFORM) download: $(TARBALLS_LOCATION)/$(ARCHIVE) @@ -28,7 +29,7 @@ download: $(TARBALLS_LOCATION)/$(ARCHIVE) $(TARBALLS_LOCATION)/$(ARCHIVE): cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) -o $(TARBALLS_LOCATION)/$(ARCHIVE) $(BASE_URL)/archive/$(VERSION).tar.gz -$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) +$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE).$(HASH_TYPE) $(DEPS) rm -rf $(PLATFORM); mkdir -p $(PLATFORM) cd $(PLATFORM); $(ARCHIVE_TOOL) $(TARBALLS_LOCATION)/$(ARCHIVE) cd $(PLATFORM); $(AUTORECONF) -vif && ac_cv_path_GIT= ./configure $(config) |