Browse Source

Simplify install-libs prerequisite generation.

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

+ 3
- 7
common.mak View File

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

ifeq ($(BUILD_SHARED),yes)
INSTLIBTARGETS += install-lib-shared
endif
ifeq ($(BUILD_STATIC),yes)
INSTLIBTARGETS += install-lib-static
endif
INSTALL_TARGETS-$(BUILD_SHARED) += install-lib-shared
INSTALL_TARGETS-$(BUILD_STATIC) += install-lib-static

install: install-libs install-headers

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

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


Loading…
Cancel
Save