diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-08 18:43:44 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-08 18:43:44 +0000 |
commit | 2a5500b13e666a6837d0bb08de9d5f26d7008851 (patch) | |
tree | cd95424bc29278c818dab0326b60e63583081fb1 /common.mak | |
parent | a79f59e31cc89249be48f8e6242c70a78210d631 (diff) | |
download | ffmpeg-2a5500b13e666a6837d0bb08de9d5f26d7008851.tar.gz |
Add TESTOBJS make variable for extra objects used by test apps
Originally committed as revision 22335 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common.mak b/common.mak index 446ccc1992..c03d0a5711 100644 --- a/common.mak +++ b/common.mak @@ -84,6 +84,7 @@ FFLDFLAGS := $(addprefix -L$(BUILD_ROOT)/lib,$(ALLFFLIBS)) $(LDFLAGS) EXAMPLES := $(addprefix $(SUBDIR),$(addsuffix -example$(EXESUF),$(EXAMPLES))) OBJS := $(addprefix $(SUBDIR),$(OBJS)) +TESTOBJS := $(addprefix $(SUBDIR),$(TESTOBJS)) TESTPROGS := $(addprefix $(SUBDIR),$(addsuffix -test$(EXESUF),$(TESTPROGS))) HOSTOBJS := $(addprefix $(SUBDIR),$(addsuffix .o,$(HOSTPROGS))) HOSTPROGS := $(addprefix $(SUBDIR),$(addsuffix $(HOSTEXESUF),$(HOSTPROGS))) |