diff options
author | Måns Rullgård <mans@mansr.com> | 2006-02-27 02:47:05 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-02-27 02:47:05 +0000 |
commit | 1540cfdcce0ada88ddf02e1b4c450286aad04a8f (patch) | |
tree | 196f17249681735bc8e27bc8a00c6607019c02e0 /common.mak | |
parent | 59f45163dff9842fe2a771566504ae83a2df6f46 (diff) | |
download | ffmpeg-1540cfdcce0ada88ddf02e1b4c450286aad04a8f.tar.gz |
SRCS must be set using := or things break when ASM_OBJS is added to OBJS
Originally committed as revision 5069 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mak b/common.mak index e09cadd0c8..3bcf1e96e6 100644 --- a/common.mak +++ b/common.mak @@ -19,7 +19,7 @@ ifeq ($(TARGET_ARCH_SPARC64),yes) CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc endif -SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) $(CPPOBJS:.o=.cpp) +SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) $(CPPOBJS:.o=.cpp) OBJS := $(OBJS) $(ASM_OBJS) $(CPPOBJS) STATIC_OBJS := $(OBJS) $(STATIC_OBJS) SHARED_OBJS := $(OBJS) $(SHARED_OBJS) |