Browse Source

Replace ifeq to declare install-progs dependencies by a variable.

Originally committed as revision 12613 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 17 years ago
parent
commit
c1ac39b3df
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      Makefile

+ 3
- 4
Makefile View File

@@ -143,10 +143,9 @@ doc/%.1: doc/%.pod

install: $(INSTALL_TARGETS-yes)

ifeq ($(BUILD_SHARED),yes)
install-progs: install-libs
endif
install-progs: $(PROGS)
INSTALL_PROGS_TARGETS-$(BUILD_SHARED) = install-libs

install-progs: $(PROGS) $(INSTALL_PROGS_TARGETS-yes)
install -d "$(BINDIR)"
install -c -m 755 $(PROGS) "$(BINDIR)"



Loading…
Cancel
Save