Browse Source

Add EXTRADEPS variable for extra dependencies that need to be built first.

Originally committed as revision 5323 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 19 years ago
parent
commit
06aa32ff18
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common.mak

+ 1
- 1
common.mak View File

@@ -24,7 +24,7 @@ OBJS := $(OBJS) $(ASM_OBJS) $(CPPOBJS)
STATIC_OBJS := $(OBJS) $(STATIC_OBJS)
SHARED_OBJS := $(OBJS) $(SHARED_OBJS)

all: $(LIB) $(SLIBNAME)
all: $(EXTRADEPS) $(LIB) $(SLIBNAME)

$(LIB): $(STATIC_OBJS)
rm -f $@


Loading…
Cancel
Save