Commit 71fa13e8 authored by Diego Biurrun's avatar Diego Biurrun

Simplify install-libs prerequisite generation.

Originally committed as revision 10844 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 39fe9d79
...@@ -58,16 +58,12 @@ clean:: ...@@ -58,16 +58,12 @@ clean::
distclean: clean distclean: clean
rm -f .depend rm -f .depend
ifeq ($(BUILD_SHARED),yes) INSTALL_TARGETS-$(BUILD_SHARED) += install-lib-shared
INSTLIBTARGETS += install-lib-shared INSTALL_TARGETS-$(BUILD_STATIC) += install-lib-static
endif
ifeq ($(BUILD_STATIC),yes)
INSTLIBTARGETS += install-lib-static
endif
install: install-libs install-headers install: install-libs install-headers
install-libs: $(INSTLIBTARGETS) install-libs: $(INSTALL_TARGETS-yes)
install-lib-shared: $(SLIBNAME) install-lib-shared: $(SLIBNAME)
install -d "$(SHLIBDIR)" install -d "$(SHLIBDIR)"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment