diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/target/bzip2/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/depends/target/bzip2/Makefile b/tools/depends/target/bzip2/Makefile index c5ef21e165..4233e7f024 100644 --- a/tools/depends/target/bzip2/Makefile +++ b/tools/depends/target/bzip2/Makefile @@ -12,8 +12,6 @@ include ../../download-files.include # configuration settings CONFIGURE=./configure --prefix=$(PREFIX) --disable-shared -LIBDYLIB=$(PLATFORM)/libbz2.a - all: .installed-$(PLATFORM) @@ -22,10 +20,8 @@ $(PLATFORM): $(DEPS) | $(TARBALLS_LOCATION)/$(ARCHIVE).$(HASH_TYPE) cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) cd $(PLATFORM); patch -p1 -i ../Makefile.patch -$(LIBDYLIB): $(PLATFORM) +.installed-$(PLATFORM): $(PLATFORM) $(MAKE) -C $(PLATFORM) PREFIX=$(PREFIX) CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" AR="$(AR)" - -.installed-$(PLATFORM): $(LIBDYLIB) $(MAKE) -C $(PLATFORM) install PREFIX=$(PREFIX) rm $(PREFIX)/bin/bzip2 touch $@ |