Browse Source

Fix circular dependency between install-progs and install-libs targets.

Originally committed as revision 12611 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 17 years ago
parent
commit
7b3ca33fb6
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      common.mak

+ 3
- 3
common.mak View File

@@ -71,12 +71,12 @@ clean::
distclean:: clean
rm -f .depend

INSTALL_TARGETS-$(BUILD_SHARED) += install-lib-shared
INSTALL_TARGETS-$(BUILD_STATIC) += install-lib-static
INSTALL_LIB_TARGETS-$(BUILD_SHARED) += install-lib-shared
INSTALL_LIB_TARGETS-$(BUILD_STATIC) += install-lib-static

install: install-libs install-headers

install-libs: $(INSTALL_TARGETS-yes)
install-libs: $(INSTALL_LIB_TARGETS-yes)

install-lib-shared: $(SLIBNAME)
install -d "$(SHLIBDIR)"


Loading…
Cancel
Save